TODO: short summary
- start Chrome with user profile
- start Chrome with extensions disabled
- start Chrome with "ChromeOptions()"
- TODO: add more examples!!!
| *** Settings *** | |
| Library AppiumLibrary 15 run_on_failure=Log Source | |
| Library Process | |
| Suite Setup Spawn Appium Server | |
| Suite Teardown Close Appium Server | |
| Test Teardown Close Application | |
| *** Variables *** | |
| ## Go here to download the apk for the app used in this test -> https://drive.google.com/file/d/19FxLjux8ZtumweXzBA_CYrL0Va-BL4gY/view?usp=sharing |
TODO: short summary
| // step 1 install java | |
| sudo add-apt-repository ppa:webupd8team/java | |
| sudo apt-get update | |
| sudo apt-get install oracle-java7-installer | |
| sudo npm install java --save | |
| // step 2 using | |
| var java = require("java"); | |
| var jarfile = "jarfileName.jar"; | |
| java.classpath.push(jarPath); |