Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danielpaulus/ios-appium-on-linux
Run appium for iOS devices on Linux
https://github.com/danielpaulus/ios-appium-on-linux
Last synced: 2 months ago
JSON representation
Run appium for iOS devices on Linux
- Host: GitHub
- URL: https://github.com/danielpaulus/ios-appium-on-linux
- Owner: danielpaulus
- License: agpl-3.0
- Created: 2021-03-30T12:06:31.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-04-01T15:42:05.000Z (almost 4 years ago)
- Last Synced: 2024-05-02T04:36:45.740Z (9 months ago)
- Language: Shell
- Size: 34.2 KB
- Stars: 13
- Watchers: 2
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ios-appium-on-linux
Run appium for iOS devices on Linux
1. Install WebDriverAgent on your iOS device using Xcode, then plug the device into your Linux box
2. Install usbmuxd on your linux box `apt install usbmuxd` and run it `sudo usbmuxd&`
3. Clone this repo on the Linux box
4. Run: `docker build -t ios-appium-on-linux .`
5. Run: `./run.sh ios-appium-on-linux` to start the container
6. Run: `docker exec CONTAINER_ID /ios runwda` to start WebDriverAgent
7. Now you can run any appium script on the linux box, f.ex. try `node client/test.js` to try the script included in this repo.