I am just testing wet tests with React Native, and I was wondering if there was a simpler application path in the appium.txt file. This file is as follows:
[caps]
platformName = "ios"
deviceName = "iPhone 6"
platformVersion = "9.2"
waitForAppScript = true
app = "Library/Developer/CoreSimulator/Devices/923C1612-25BA-4206-9109-5C0B65B08897/data/Containers/Bundle/Application/B91B9D4B-5A95-4576-86D5-94060F7F3680/myapp.app"
[appium_lib]
sauce_username = false
sauce_access_key = false
the part app =handles the path to the actual application file in which appium will run my test suite (now I use cucumber and watir-webdriver), but the problem is that every time I launch this application from Xcode, the UDID of the application changes. Is there a better way to do this? Any help is appreciated.
source
share