Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

QAS provides capabilities to execute your mobile web tests on device's browser to let you check how the website works on real devices. For Android, the test can be run on Chrome browser and for iOS, the test can be run on Safari browser. The execution is carried out with the help of Appium which is similar to Android and iOS Native app execution. 

...

[A] If you are using Appium with CLI

Start Appium like this, else skip this step and move to Step 2. Start Appium with one param called chromedriver-executable. This param takes path of your chrome driver, which must match the Chrome version on mobile.

...

Code Block
{
    "platformName": "iOS",
    "automationName": "XCUITest",
    "deviceName": "iPhone XR",
    "fullReset": false,
    "noReset": true,
    "platformVersion": "12.1",
    "browserName": "Safari"
}

...

...

Initiate the Execution on Mobile

Once you defined the capabilities on the Capabilities window, click Start to initiate the execution on device.

...