How to use the appium-xcuitest-driver function in appium-xcuitest-driver

To help you get started, we’ve selected a few appium-xcuitest-driver examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github truongsinh / appium-flutter-driver / driver / lib / sessions / ios.ts View on Github external
const setupNewIOSDriver = async (caps)  => {
  const iosArgs = {
    javascriptEnabled: true,
  };

  const iosdriver = new XCUITestDriver(iosArgs);
  const capsCopy = Object.assign({}, caps, { newCommandTimeout: 0 });
  await iosdriver.createSession(capsCopy);

  return iosdriver;
};

appium-xcuitest-driver

Appium driver for iOS using XCUITest for backend

Apache-2.0
Latest version published 2 days ago

Package Health Score

84 / 100
Full package analysis

Popular appium-xcuitest-driver functions