Please enable JavaScript.
Coggle requires JavaScript to display documents.
Automation - Coggle Diagram
Automation
Python
Install Python3
Install
python-appium
client
For run Automation in Command line
Install
Selenium
for Python
For run automation on website
Install Pycharm
Editor for develop
Setup
python interprete
Setup c
ontent roots
Run Test
Start Appium terminal
appium --address 127.0.0.1 --port 4723
Run by Terminal
cd to folder /automation
python3 src/suite/suite_filename.py
Run by Pycharm
open folder suite and one by one item
Open file src/Setting.py
for edit info device, uiser
Appium
Setup
Appium
For run automation on mobile
Should be install by command
Android SDK
Install Android Studio
Get Path to adb command
Setup Emulator
bash_profile
add to bash_profile
export ANDROID_HOME="path to sdk folder" (
example
: /Users/username/Library/Android/sdk)
export PATH=${PATH}:$ANDROID_HOME/platform-tools
export PATH=${PATH}:$ANDROID_HOME/tools
export PYTHONPATH="path to folder code automation":$PYTHONPATH