Skip to content

Commit

Permalink
add appium capabilities config for IOS
Browse files Browse the repository at this point in the history
  • Loading branch information
jiji14 committed Nov 9, 2023
1 parent b0faa75 commit 6a64e6d
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions e2e-tests/config/ios.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
const { config } = require('./wdio.conf');

// Appium capabilities
config.capabilities = [
{
// The defaults you need to have in your config
platformName: 'iOS',
maxInstances: 1,
// For W3C the appium capabilities need to have an extension prefix
// This is `appium:` for all Appium Capabilities which can be found here
// http://appium.io/docs/en/writing-running-appium/caps/
'appium:deviceName': 'iPhone 13',
'appium:platformVersion': '15.0',
'appium:automationName': 'XCUITest',
'appium:app': 'edu.berkeley.eecs.emission.devapp',
},
];

exports.config = config;

0 comments on commit 6a64e6d

Please sign in to comment.