There is an error shown after I start the new driver "uninitialized constant Appium::Ios::Device"
caps = {
:deviceName => self.device.name,
:udid => self.device.udid,
:platformVersion => self.device.iOSVersion,
:platformName => :ios,
:bundleId => bundleID,
:xcodeOrgId => self.xcodeOrgID,
:xcodeSigningId => "iPhone Developer",
:newCommandTimeout => 120,
:noReset => true,
:app => ENV['APP_PATH'],
:clearSystemFiles => true,
:wdaLocalPort => self.device.wdaPort,
:automationName => "XCUITest",
:preventWDAAttachments => true,
:useJSONSource => true,
}
appium_lib = {
export_session: false,
wait: 0,
wait_timeout: 0,
wait_interval: 1,
server_url: "http://127.0.0.1:#{self.device.appiumPort}/wd/hub"
}
driver = Appium::Driver.new({:caps => caps, :appium_lib => appium_lib}, true)
After creating a driver, this error is shown. Not reproducible with appium_lib 9.13.0
Would be thankful for any helpful input on this issue
This is a
Summary
There is an error shown after I start the new driver "uninitialized constant Appium::Ios::Device"
Environment
ruby_libversion: 9.14.0Actual behaviour and steps to reproduce
I have the following caps:
After creating a driver, this error is shown. Not reproducible with appium_lib 9.13.0
Would be thankful for any helpful input on this issue
Expected behaviour
The driver starts :)