0.1.12 • Published 1 year ago

@nightwatch/mobile-helper v0.1.12

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

@nightwatch/mobile-helper

Official Nightwatch helper-tool to easily setup all the requirements needed to get started with running your Nightwatch tests on real mobile-browsers.

Note Although this tool is designed with Nightwatch in mind, it can also be used as a standalone tool to download all the required Android SDKs needed to get the Android Emulator setup and running with Android v11. It can also download and install the latest version of Firefox browser on the Android Emulator.

Usage

Mobile web testing - Android

  1. In your Nightwatch project, install @nightwatch/mobile-helper as a dev-dependency:
    npm i @nightwatch/mobile-helper --save-dev
  2. From your project's root dir, run:

    npx @nightwatch/mobile-helper android
  3. Answer a few questions related to your requirements:

  1. It will verify if all the requirements are being met.
  2. If some requirements are not being met, it will ask whether to download and setup those requirements:

  3. Voila :tada: Your setup is now complete. (If something fails, follow the instructions and re-run the command.)

  4. Add the following env configuration to your nightwatch.conf.js or nightwatch.json file:

    "test_settings": {
     // other envs above this line
     'android.chrome': {
       desiredCapabilities: {
         real_mobile: false,
         avd: 'nightwatch-android-11',
         browserName: 'chrome',
         'goog:chromeOptions': {
           w3c: true,
           args: [
             //'--no-sandbox',
             //'--ignore-certificate-errors',
             //'--allow-insecure-localhost',
             //'--headless'
           ],
           androidPackage: 'com.android.chrome',
           // add the device serial to run tests on, if multiple devices are online
           // Run command: `$ANDROID_HOME/platform-tools/adb devices`
           // androidDeviceSerial: ''
         },
       },
    
       webdriver: {
         start_process: true,
         server_path: 'chromedriver-mobile/chromedriver',
         cli_args: [
           // --verbose
         ]
       }
     },
    
     'android.firefox': {
       desiredCapabilities: {
         real_mobile: false,
         avd: 'nightwatch-android-11',
         browserName: 'firefox',
         acceptInsecureCerts: true,
         'moz:firefoxOptions': {
           args: [
             // '-headless',
             // '-verbose'
           ],
           androidPackage: 'org.mozilla.firefox',
           // add the device serial to run tests on, if multiple devices are online
           // Run command: `$ANDROID_HOME/platform-tools/adb devices`
           // androidDeviceSerial: 'ZD2222W62Y'
         }
       },
       webdriver: {
         start_process: true,
         server_path: '',
         cli_args: [
           // very verbose geckodriver logs
           // '-vv'
         ]
       }
     },
    }
  5. If testing on real-device:

    1. Make sure latest version of Chrome/Firefox browsers are installed. If not, install them from Google Play Store.
    2. Turn on USB Debugging on your Android Device and connect it to your system via data cable.
    3. Set real_mobile capability to true in the configuration.
  6. If testing on emulator, make sure chromedriver-mobile/chromedriver is present in your Nightwatch project's root dir. If not present, re-run the command:

    npx @nightwatch/mobile-helper android
  7. Run your nightwatch tests on Android mobile browsers:
    # for firefox
    npx nightwatch --env android.firefox
    # for chrome
    npx nightwatch --env android.chrome

Mobile web testing - iOS

  1. In your Nightwatch project, install @nightwatch/mobile-helper as a dev-dependency:
    npm i @nightwatch/mobile-helper --save-dev
  2. From your project's root dir, run:

    npx @nightwatch/mobile-helper ios
  3. Answer a device related question:

  1. It will verify if all the requirements are being met.
  2. If some requirements are not being met, follow the guide to setup those requirements.

  1. Great :tada: Your setup is now complete. (Re-run the command in the first step to verify.)

  2. Add the following env configuration to your nightwatch.conf.js or nightwatch.json file:

    "test_settings": {
      // other envs above this line
      'ios.real.safari': {
        desiredCapabilities: {
          browserName: 'safari',
          platformName: 'iOS',
          // add udid of the device to run tests on (necessary)
          // Run command: `xcrun xctrace list devices`
          // 'safari:deviceUDID': '00008030-00024C2C3453402E',
        },
    
        webdriver: {
          start_process: true,
          server_path: '',
          cli_args: [
            // --verbose
          ]
        }
      },
    
      'ios.simulator.safari': {
        desiredCapabilities: {
          browserName: 'safari',
          platformName: 'iOS',
          'safari:useSimulator': true,
          // To find the available deviceName/platformName to run tests on,
          // run command: `xcrun simctl list devices`
          // 'safari:platformVersion': '15.0',
          'safari:deviceName': 'iPhone 13'
        },
    
        webdriver: {
          start_process: true,
          server_path: '',
          cli_args: [
            // --verbose
          ]
        }
      },
    }
  3. (Real Device) Run the following command to get the UDID:

     system_profiler SPUSBDataType | sed -n '/iPhone/,/Serial/p' | grep 'Serial Number:' | awk -F ': ' '{print $2}'
  4. (Optional) Update the configurations :

    Real Device

    In your Nightwatch configuration, set safari:deviceUDID capability of ios.real.safari environment to UDID from the previous step.

    Simulators

    Run the following command to get a list of simulators:

    xcrun simctl list devices

    And then update safari:deviceName (eg: 'iPhone 13') and safari:platformVersion (eg: '15.0') capabilities of ios.simulator.safari environment in your Nightwatch configuration according to your preference.

  5. Run your nightwatch tests on Android mobile browsers:

    # for simulators
    npx nightwatch --env ios.simulator.safari
    
    # for real device
    npx nightwatch --env ios.real.safari --deviceId <YOUR-DEVICE-UDID>
    # for real device (if updated the config in the previous step)
    npx nightwatch --env ios.real.safari

Mobile app testing - Android

Setup Android SDK requirements

  1. From your Nightwatch project's root dir, run:
    npx @nightwatch/mobile-helper android --appium
  2. Answer a few questions related to your requirements:

  3. It will verify if all the requirements are being met.

  4. If some requirements are not being met, it will ask whether to download and setup those requirements:

  5. And done! :tada: Your setup is now complete. (If something fails, follow the instructions and re-run the command.)

Setup mobile app testing and run first sample test

  1. In your Nightwatch project, install Appium v2 as a dev-dependency:
    npm i appium@next --save-dev
  2. Install Appium UiAutomator2 driver for Android:
    npx appium driver install uiautomator2
  3. Download the sample wikipedia app and save it in your project's root directory (alongside nightwatch.conf.js file).
  4. Add the following env configuration to your nightwatch.conf.js file:

    "test_settings": {
     // other envs above this line
    
     app: {
       selenium: {
         start_process: true,
         use_appium: true,
         host: 'localhost',
         port: 4723,
         server_path: '',
         // args to pass when starting the Appium server
         cli_args: [
           // automatically download the required chromedriver
           // '--allow-insecure=chromedriver_autodownload'
         ],
         // Remove below line if using Appium v1
         default_path_prefix: ''
       },
       webdriver: {
         timeout_options: {
           timeout: 150000,
           retry_attempts: 3
         },
         keep_alive: false,
         start_process: false
       }
     },
    
     'app.android.emulator': {
       extends: 'app',
       'desiredCapabilities': {
         // More capabilities can be found at https://github.com/appium/appium-uiautomator2-driver#capabilities
         browserName: null,
         platformName: 'android',
         // `appium:options` is not natively supported in Appium v1, but works with Nightwatch.
         // If copying these capabilities elsewhere while using Appium v1, make sure to remove `appium:options`
         // and add `appium:` prefix to each one of its capabilities, e.g. change 'app' to 'appium:app'.
         'appium:options': {
           automationName: 'UiAutomator2',
           // Android Virtual Device to run tests on
           avd: 'nightwatch-android-11',
           // While Appium v1 supports relative paths, it's more safe to use absolute paths instead.
           // Appium v2 does not support relative paths.
           app: `${__dirname}/wikipedia.apk`,
           appPackage: 'org.wikipedia',
           appActivity: 'org.wikipedia.main.MainActivity',
           appWaitActivity: 'org.wikipedia.onboarding.InitialOnboardingActivity',
           // chromedriver executable to use for testing web-views in hybrid apps.
           // add '.exe' at the end below (making it 'chromedriver.exe') if testing on windows.
           chromedriverExecutable: `${__dirname}/chromedriver-mobile/chromedriver`,
           newCommandTimeout: 0
         }
       }
     },
    
     'app.android.real': {
       extends: 'app',
       'desiredCapabilities': {
         // More capabilities can be found at https://github.com/appium/appium-uiautomator2-driver#capabilities
         browserName: null,
         platformName: 'android',
         // `appium:options` is not natively supported in Appium v1, but works with Nightwatch.
         // If copying these capabilities elsewhere while using Appium v1, make sure to remove `appium:options`
         // and add `appium:` prefix to each one of its capabilities, e.g. change 'app' to 'appium:app'.
         'appium:options': {
           automationName: 'UiAutomator2',
           // While Appium v1 supports relative paths, it's more safe to use absolute paths instead.
           // Appium v2 does not support relative paths.
           app: `${__dirname}/wikipedia.apk`,
           appPackage: 'org.wikipedia',
           appActivity: 'org.wikipedia.main.MainActivity',
           appWaitActivity: 'org.wikipedia.onboarding.InitialOnboardingActivity',
           // 'chromedriver' binary is required while testing hybrid mobile apps.
           // 
           // Set `chromedriverExecutable` to '' to use binary from `chromedriver` NPM package (if installed).
           // Or, put '--allow-insecure=chromedriver_autodownload' in `cli_args` property of `selenium`
           // config (see 'app' env above) to automatically download the required version of chromedriver
           // (delete `chromedriverExecutable` capability below in that case).
           chromedriverExecutable: '',
           newCommandTimeout: 0,
           // add device id of the device to run tests on, if multiple devices are online
           // Run command: `$ANDROID_HOME/platform-tools/adb devices` to get all connected devices
           // udid: '',
         }
       }
     },
    }
  5. Add the following sample test to your test-suite (test/wikipedia-android.js):

    describe('Wikipedia Android app test', function() {
      before(function(app) {
        app.click('id', 'org.wikipedia:id/fragment_onboarding_skip_button');
      });
    
      it('Search for BrowserStack', async function(app) {
        app
          .click('id', 'org.wikipedia:id/search_container')
          .sendKeys('id', 'org.wikipedia:id/search_src_text', 'browserstack')
          .click({selector: 'org.wikipedia:id/page_list_item_title', locateStrategy: 'id', index: 0})
          .waitUntil(async function() {
            // wait for webview context to be available
            const contexts = await this.appium.getContexts();
    
            return contexts.includes('WEBVIEW_org.wikipedia');
          })
          .appium.setContext('WEBVIEW_org.wikipedia')
          .assert.textEquals('.pcs-edit-section-title', 'BrowserStack');  // command run in webview context
      });
    });
  6. If testing on real-device:

    1. Turn on USB Debugging on your Android Device and connect it to your system via data cable.
    2. Make sure latest version of Chrome browser is installed on your Android device. If not, install from Google Play Store.
    3. Make sure latest version of chromedriver NPM package is installed in your project. If not, install by running:
      npm i chromedriver@latest --save-dev
  7. If testing on emulator, make sure chromedriver-mobile/chromedriver is present in your Nightwatch project's root dir. If not present, re-run the command:
    npx @nightwatch/mobile-helper android --appium
  8. Run your Nightwatch tests on Android emulator/real device:
     # test on emulator (assuming test saved as `test/wikipedia-android.js`)
     npx nightwatch test/wikipedia-android.js --env app.android.emulator
     # test on real-device (assuming test saved as `test/wikipedia-android.js`)
     npx nightwatch test/wikipedia-android.js --env app.android.real

Mobile app testing - iOS

Setup iOS SDK requirements

  1. From your Nightwatch project's root dir, run:
    npx @nightwatch/mobile-helper ios --setup
  2. Answer a device related question:

  3. It will verify if all the requirements are being met.

  4. If some requirements are not being met, follow the guide to setup those requirements.

  5. And done! :tada: Your setup is now complete. (Re-run the command in the first step to verify.)

Setup mobile app testing and run first sample test

  1. In your Nightwatch project, install Appium v2 as a dev-dependency:
    npm i appium@next --save-dev
  2. Install Appium XCUITest driver for iOS:
    npx appium driver install xcuitest
  3. Download the sample wikipedia app and save it in your project's root directory (alongside nightwatch.conf.js file).
  4. Add the following env configuration to your nightwatch.conf.js file (skip 'app' env if already followed Android setup above):

    "test_settings": {
     // other envs above this line
    
     app: {
       selenium: {
         start_process: true,
         use_appium: true,
         host: 'localhost',
         port: 4723,
         server_path: '',
         // args to pass when starting the Appium server
         cli_args: [
           // automatically download the required chromedriver
           // '--allow-insecure=chromedriver_autodownload'
         ],
         // Remove below line if using Appium v1
         default_path_prefix: ''
       },
       webdriver: {
         timeout_options: {
           timeout: 150000,
           retry_attempts: 3
         },
         keep_alive: false,
         start_process: false
       }
     },
    
     'app.ios.simulator': {
       extends: 'app',
       'desiredCapabilities': {
         // More capabilities can be found at https://github.com/appium/appium-xcuitest-driver#capabilities
         browserName: null,
         platformName: 'ios',
         // `appium:options` is not natively supported in Appium v1, but works with Nightwatch.
         // If copying these capabilities elsewhere while using Appium v1, make sure to remove `appium:options`
         // and add `appium:` prefix to each one of its capabilities, e.g. change 'app' to 'appium:app'.
         'appium:options': {
           automationName: 'XCUITest',
           // platformVersion: '15.5',
           deviceName: 'iPhone 13',
           // While Appium v1 supports relative paths, it's more safe to use absolute paths instead.
           // Appium v2 does not support relative paths.
           app: `${__dirname}/wikipedia.zip`,
           bundleId: 'org.wikimedia.wikipedia',
           newCommandTimeout: 0
         }
       }
     },
    
     'app.ios.real': {
       extends: 'app',
       'desiredCapabilities': {
         // More capabilities can be found at https://github.com/appium/appium-xcuitest-driver#capabilities
         browserName: null,
         platformName: 'ios',
         // `appium:options` is not natively supported in Appium v1, but works with Nightwatch.
         // If copying these capabilities elsewhere while using Appium v1, make sure to remove `appium:options`
         // and add `appium:` prefix to each one of its capabilities, e.g. change 'app' to 'appium:app'.
         'appium:options': {
           automationName: 'XCUITest',
           // While Appium v1 supports relative paths, it's more safe to use absolute paths instead.
           // Appium v2 does not support relative paths.
           app: `${__dirname}/wikipedia.zip`,
           bundleId: 'org.wikimedia.wikipedia',
           newCommandTimeout: 0,
           // add udid of the device to run tests on. Or, pass the id to `--deviceId` flag when running tests.
           // device id could be retrieved from Xcode > Window > "Devices and Simulators" window.
           // udid: '00008030-00024C2C3453402E'
         }
       }
     },
    }
  5. Add the following sample test to your test-suite (test/wikipedia-ios.js):

    describe('Wikipedia iOS app test', function() {
      before(function(app) {
        app.click('xpath', '//XCUIElementTypeButton[@name="Skip"]');
      });
    
      it('Search for BrowserStack', async function(app) {
        app
          .useXpath()
          .click('//XCUIElementTypeSearchField[@name="Search Wikipedia"]')
          .sendKeys('//XCUIElementTypeSearchField[@name="Search Wikipedia"]', 'browserstack')
          .click('//XCUIElementTypeStaticText[@name="BrowserStack"]')
          .waitUntil(async function() {
            // wait for webview context to be available
            const contexts = await this.appium.getContexts();
    
            return contexts.length > 1;
          }, 5000)
          .perform(async function() {
            // switch to webview context
            const contexts = await this.appium.getContexts();
    
            await this.appium.setContext(contexts[1]);
          })
          .useCss()
          .assert.textEquals('.pcs-edit-section-title', 'BrowserStack');  // command run in webview context
      });
    });
  6. (Real Device) Run the following command to get the UDID:

     system_profiler SPUSBDataType | sed -n '/iPhone/,/Serial/p' | grep 'Serial Number:' | awk -F ': ' '{print $2}'
  7. (Optional) Update the configurations :

    Real Device

    In your Nightwatch configuration, set udid property of appium:options capability inside app.ios.real environment to UDID from the previous step.

    Simulators

    Run the following command to get a list of simulators:

    xcrun simctl list devices

    And then update deviceName (eg: 'iPhone 13') and platformVersion (eg: '15.0') properties of appium:options capability, defined for app.ios.simulator environment in your Nightwatch configuration, according to your preference.

  8. Run your Nightwatch tests on iOS simulator/real device:

     # test on simulator (assuming test saved as `test/wikipedia-ios.js`)
     npx nightwatch test/wikipedia-ios.js --env app.ios.simulator
     
     # test on real-device (assuming test saved as `test/wikipedia-ios.js`)
     npx nightwatch test/wikipedia-ios.js --env app.ios.real
0.1.11

1 year ago

0.1.12

1 year ago

0.1.10

1 year ago

0.1.8

1 year ago

0.1.7

1 year ago

0.1.9

1 year ago

0.1.6

1 year ago

0.1.5

1 year ago

0.1.4

2 years ago

0.1.3

2 years ago

0.1.2

2 years ago

0.1.1

2 years ago