Hi there,
I have a local network consisting of two computers. A test client (Windows) and a test server (Mac).
I want to run the example test ios_simple.py with the app saved on the test server.
I want to run the app in the iOS simulator.
How do I have to specify the app's path in my test case on the test client in this situation?
# set up appium
app = os.path.join(os.path.dirname(__file__),
'/Users/me/Library/Developer/Xcode/DerivedData/TestApp-dnjfedvynjnwiugtnjbumuycgpxb/Build/Products/Debug-iphonesimulator',
'TestApp.app')
app = os.path.abspath(app)
self.driver = webdriver.Remote(
command_executor='http://192.168.2.1:4723/wd/hub',
desired_capabilities={
'app': app,
'platformName': 'iOS',
'platformVersion': '9.2',
'deviceName': 'iPhone 6'
})
Both computers know each other. Tested this by a ping.
Thanks.