NodeJS Automated App Testing
First, make sure you have installed NodeJS. If you haven't, you can easily install it by downloading NodeJS from the NodeJS website
Installation
With TestingBot you can easily run your automated tests with any NodeJS test framework, here's a simple example with wd:
Real Device Testing
This will download and install a sample Android app we built. It will add two numbers to a textinput and display the sum of the two numbers.
const wd = require('wd');
const assert = require('assert');
const asserters = wd.asserters;
const testingbotKey = "api_key",
testingbotSecret = "api_secret";
const desiredCaps = {
'name': 'My First App Test',
'deviceName' : 'Galaxy S8',
'platformName': 'Android',
'version': '9.0',
'app' : 'https://testingbot.com/appium/sample.apk',
'realDevice': true
};
const driver = wd.promiseRemote("http://" + testingbotKey + ":" + testingbotSecret + "@hub.testingbot.com/wd/hub");
driver
.init(desiredCaps)
.then(function () {
return driver.waitForElementByAccessibilityId('inputA', asserters.isDisplayed && asserters.isEnabled, 30000);
})
.then(function (inputA) {
return inputA.sendKeys("10");
})
.then(function () {
return driver.waitForElementByAccessibilityId('inputB', asserters.isDisplayed && asserters.isEnabled, 30000);
})
.then(function (inputB) {
return inputB.sendKeys("5");
})
.then(function () {
return driver.waitForElementByAccessibilityId('sum', asserters.isDisplayed && asserters.isEnabled, 30000);
})
.then(function (textOutput) {
return textOutput.text().then(function(value) {
if (value === "15")
assert(true);
else
assert(false);
});
})
.fin(function() { return driver.quit(); })
.done();
Make sure to always stop your test (.done()), otherwise it will continue running, leading to a timeout.
This will download and install a sample iOS app we built. It will add two numbers to a textinput and display the sum of the two numbers.
const wd = require('wd');
const assert = require('assert');
const asserters = wd.asserters;
const testingbotKey = "api_key",
testingbotSecret = "api_secret";
const desiredCaps = {
'name': 'My First App Test',
'deviceName' : 'iPhone XR',
'platformName': 'iOS',
'version': '16.3',
'app' : 'https://testingbot.com/appium/sample.ipa',
'realDevice': true
};
const driver = wd.promiseRemote("http://" + testingbotKey + ":" + testingbotSecret + "@hub.testingbot.com/wd/hub");
driver
.init(desiredCaps)
.then(function () {
return driver.waitForElementByAccessibilityId('inputA', asserters.isDisplayed && asserters.isEnabled, 30000);
})
.then(function (inputA) {
return inputA.sendKeys("10");
})
.then(function () {
return driver.waitForElementByAccessibilityId('inputB', asserters.isDisplayed && asserters.isEnabled, 30000);
})
.then(function (inputB) {
return inputB.sendKeys("5");
})
.fin(function() { return driver.quit(); })
.done();
Make sure to always stop your test (
.done()
), otherwise it will continue running, leading to a timeout.
Simulator/Emulator Testing
This will download and install a sample Android app we built. It will add two numbers to a textinput and display the sum of the two numbers.
const wd = require('wd');
const assert = require('assert');
const asserters = wd.asserters;
const testingbotKey = "api_key",
testingbotSecret = "api_secret";
const desiredCaps = {
'name': 'My First App Test',
'deviceName' : 'Pixel 8',
'platformName': 'Android',
'version': '14.0',
'app' : 'https://testingbot.com/appium/sample.apk'
};
const driver = wd.promiseRemote("http://" + testingbotKey + ":" + testingbotSecret + "@hub.testingbot.com/wd/hub");
driver
.init(desiredCaps)
.then(function () {
return driver.waitForElementByAccessibilityId('inputA', asserters.isDisplayed && asserters.isEnabled, 30000);
})
.then(function (inputA) {
return inputA.sendKeys("10");
})
.then(function () {
return driver.waitForElementByAccessibilityId('inputB', asserters.isDisplayed && asserters.isEnabled, 30000);
})
.then(function (inputB) {
return inputB.sendKeys("5");
})
.then(function () {
return driver.waitForElementByAccessibilityId('sum', asserters.isDisplayed && asserters.isEnabled, 30000);
})
.then(function (textOutput) {
return textOutput.text().then(function(value) {
if (value === "15")
assert(true);
else
assert(false);
});
})
.fin(function() { return driver.quit(); })
.done();
Make sure to always stop your test (
.done()
), otherwise it will continue running, leading to a timeout.
This will download and install a sample iOS app we built. It will add two numbers to a textinput and display the sum of the two numbers.
const wd = require('wd');
const assert = require('assert');
const asserters = wd.asserters;
const testingbotKey = "api_key",
testingbotSecret = "api_secret";
const desiredCaps = {
'name': 'My First App Test',
'deviceName' : 'iPhone 15',
'platformName': 'iOS',
'version': '17.4',
'app' : 'https://testingbot.com/appium/sample.zip',
};
const driver = wd.promiseRemote("http://" + testingbotKey + ":" + testingbotSecret + "@hub.testingbot.com/wd/hub");
driver
.init(desiredCaps)
.then(function () {
return driver.waitForElementByAccessibilityId('inputA', asserters.isDisplayed && asserters.isEnabled, 30000);
})
.then(function (inputA) {
return inputA.sendKeys("10");
})
.then(function () {
return driver.waitForElementByAccessibilityId('inputB', asserters.isDisplayed && asserters.isEnabled, 30000);
})
.then(function (inputB) {
return inputB.sendKeys("5");
})
.fin(function() { return driver.quit(); })
.done();
Make sure to always stop your test (
.done()
), otherwise it will continue running, leading to a timeout.
Uploading Your App
Please see our Upload Mobile App documentation to find out how to upload your app to TestingBot for testing.
Specify Browsers & Devices
To run your existing tests on TestingBot, your tests will need to be configured to use the TestingBot remote machines. If the test was running on your local machine or network, you can simply change your existing test like this:
Before: After:var driver = new webdriver.Builder().usingServer('https://hub.testingbot.com/wd/hub').withCapabilities({
'app' : 'tb://...'
}).build()
To let TestingBot know on which device you want to run your test on, you need to specify the deviceName
, version
, platformName
and other optional options in the capabilities field.
To see how to do this, please select a combination of device type and device name in the drop-down menus below.
Testing Internal Websites
We've built TestingBot Tunnel, to provide you with a secure way to run tests against your staged/internal webapps.
Please see our TestingBot Tunnel documentation for more information about this easy to use tunneling solution.
The example below shows how to easily run a NodeJS test with our Tunnel:
1. Download our tunnel and start the tunnel:
2. Adjust your test: instead of pointing to 'hub.testingbot.com/wd/hub'
like the example above - change it to point to your tunnel's IP address.
Assuming you run the tunnel on the same machine you run your tests, change to 'localhost:4445/wd/hub'
. localhost is the machine running the tunnel, 4445 is the default port of the tunnel.
This way your test will go securely through the tunnel to TestingBot and back:
const wd = require('wd');
const assert = require('assert');
const asserters = wd.asserters;
const testingbotKey = "api_key",
testingbotSecret = "api_secret";
const desiredCaps = {
'name': 'My First App Test',
'deviceName' : 'iPhone 15',
'platformName': 'iOS',
'version': '17.4',
'app' : 'https://testingbot.com/appium/sample.zip',
};
const driver = wd.promiseRemote("http://" + testingbotKey + ":" + testingbotSecret + "@localhost:4445/wd/hub");
driver
.init(desiredCaps)
.then(function () {
return driver.waitForElementByAccessibilityId('inputA', asserters.isDisplayed && asserters.isEnabled, 30000);
})
.then(function (inputA) {
return inputA.sendKeys("10");
})
.then(function () {
return driver.waitForElementByAccessibilityId('inputB', asserters.isDisplayed && asserters.isEnabled, 30000);
})
.then(function (inputB) {
return inputB.sendKeys("5");
})
.fin(function() { return driver.quit(); })
.done();
Run tests in Parallel
Parallel Testing means running the same test, or multiple tests, simultaneously. This greatly reduces your total testing time.
You can run the same tests on all different browser configurations or run different tests all on the same browser configuration.
TestingBot has a large grid of machines and browsers, which means you can use our service to do efficient parallel testing. It is one of the key features we provide to greatly cut down on your total testing time.
To run tests in parallel, we recommend using a test runner like WebDriverIO to run your tests simultaneously.
Queuing
Every plan we provide comes with a limit of parallel tests.
If you exceed the number of parallel tests assigned to your account, TestingBot will queue the additional tests (for up to 6 minutes) and run the tests as soon as slots become available.
Mark tests as passed/failed
As TestingBot has no way to dermine whether your test passed or failed (it is determined by your business logic), we offer a way to send the test status back to TestingBot. This is useful if you want to see if a test succeeded or failed from the TestingBot member area.
Install our NPM package to interact with the TestingBot API:
After your test completed, you can send back the test success state and other meta-data:
Preparing your App
You do not need to install any code or plugin to run a test.
Below are some things that are necessary to successfully run a mobile test:
- Please supply the URL to your
.apk
or.aab
file.
Important: the.apk
file needs to be a x86 build (x86 ABI) for Android emulators.
- Please supply the URL to an
.ipa
file.
- Please supply the URL to a
.zip
file that contains your.app
-
The
.app
needs to be an iOS Simulator build:
- Create a Simulator build:
- Zip the
.app
bundle:
- Create a Simulator build:
Additional Options
Appium provides a lot of options to configure your test.
Some important options that might help:
For Android:- appActivity and appPackage: by default, Appium will try to extract the main Activity from your apk. If this fails, you can supply your own with these options.
- chromeOptions: additional chromedriver options you can supply.
- otherApps: a JSON array of other apps that need to be installed, in URL format.
-
locale: the language of the simulator/device (ex:
fr_CA
) - newCommandTimeout: How long (in seconds) Appium will wait for a new command from the client before assuming the client quit and ending the session