Mobile API (Unified)
This page is generated from Appium and Detox helper docblocks.
For hybrid/mobile webview flows, ARIA locators such as { aria: "Sign in" } are available in web helpers.
Methods
Section titled “Methods”I.appendField()
Section titled “I.appendField()”| Appium | Detox |
|---|---|
| Supported | Supported |
Appium
Appends text to a input field or textarea. Field is located by name, label, CSS or XPath
The third parameter is an optional context (CSS or XPath locator) to narrow the search.
I.appendField('#myTextField', 'appended');// typing secretI.appendField('password', secret('123456'));// within a contextI.appendField('name', 'John', '.form-container');Parameters
field(string | object) located by label|name|CSS|XPath|strict locatorvaluestring text value to append.context(string? | object) (optional,nullby default) element located by CSS | XPath | strict locator. (optional, defaultnull)
Returns void automatically synchronized promise through #recorder
Detox
Appends text into the field. A field can be located by text, accessibility id, id.
I.appendField('name', 'davert');Parameters
I.checkIfAppIsInstalled()
Section titled “I.checkIfAppIsInstalled()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Returns app installation status.
I.checkIfAppIsInstalled("com.example.android.apis");Parameters
bundleIdstring String ID of bundled app
Returns Promise<boolean> Appium: support only Android
Detox
Not available in this helper.
I.checkIfElementExists()
Section titled “I.checkIfElementExists()”| Appium | Detox |
|---|---|
| Not supported | Supported |
Appium
Not available in this helper.
Detox
Checks if an element exists.
I.checkIfElementExists('~edit'); // located by accessibility idI.checkIfElementExists('~edit', '#menu'); // element inside #menuParameters
locator(string | object) element to locatecontext(string | object | null) context element (optional, defaultnull)
I.checkOption()
Section titled “I.checkOption()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Selects a checkbox or radio button. Element is located by label or name or CSS or XPath.
The second parameter is an optional context (CSS or XPath locator) to narrow the search.
I.checkOption('#agree');I.checkOption('I Agree to Terms and Conditions');I.checkOption('agree', '//form');Parameters
field(string | object) checkbox located by label | name | CSS | XPath | strict locator.context(string? | object) (optional,nullby default) element located by CSS | XPath | strict locator. (optional, defaultnull)
Returns void automatically synchronized promise through #recorder
Detox
Not available in this helper.
I.clearField()
Section titled “I.clearField()”| Appium | Detox |
|---|---|
| Not supported | Supported |
Appium
Not available in this helper.
Detox
Clears a text field. A field can be located by text, accessibility id, id.
I.clearField('~name');Parameters
I.click()
Section titled “I.click()”| Appium | Detox |
|---|---|
| Supported | Supported |
Appium
Perform a click on a link or a button, given by a locator. If a fuzzy locator is given, the page will be searched for a button, link, or image matching the locator string. For buttons, the “value” attribute, “name” attribute, and inner text are searched. For links, the link text is searched. For images, the “alt” attribute and inner text of any parent links are searched.
If no locator is provided, defaults to clicking the body element ('//body').
The second parameter is a context (CSS or XPath locator) to narrow the search.
// click body element (default)I.click();// simple linkI.click('Logout');// button of formI.click('Submit');// CSS buttonI.click('#form input[type=submit]');// XPathI.click('//form/*[@type=submit]');// link in contextI.click('Logout', '#nav');// using strict locatorI.click({css: 'nav a.login'});Parameters
locator(string | object) (optional,'//body'by default) clickable link or button located by text, or any element located by CSS|XPath|strict locator. (optional, default'//body')context(string? | object | null) (optional,nullby default) element to search in CSS|XPath|Strict locator. (optional, defaultnull)
Returns void automatically synchronized promise through #recorder
Detox
Clicks on an element. Element can be located by its text or id or accessibility id
The second parameter is a context (id | type | accessibility id) to narrow the search.
Same as tap
I.click('Login'); // locate by textI.click('~nav-1'); // locate by accessibility labelI.click('#user'); // locate by idI.click('Login', '#nav'); // locate by text inside #navI.click({ ios: 'Save', android: 'SAVE' }, '#main'); // different texts on iOS and AndroidParameters
I.clickAtPoint()
Section titled “I.clickAtPoint()”| Appium | Detox |
|---|---|
| Not supported | Supported |
Appium
Not available in this helper.
Detox
Performs click on element with horizontal and vertical offset. An element is located by text, id, accessibility id.
I.clickAtPoint('Save', 10, 10);I.clickAtPoint('~save', 10, 10); // locate by accessibility idParameters
locator(string | object)xnumber horizontal offset (optional, default0)ynumber vertical offset (optional, default0)
I.closeApp()
Section titled “I.closeApp()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Close the given application.
I.closeApp();Returns Promise<void> Appium: support both Android and iOS
Detox
Not available in this helper.
I.dontSee()
Section titled “I.dontSee()”| Appium | Detox |
|---|---|
| Supported | Supported |
Appium
Opposite to see. Checks that a text is not present on a page.
Use context parameter to narrow down the search.
I.dontSee('Login'); // assume we are already logged in.I.dontSee('Login', '.nav'); // no login inside .nav elementParameters
textstring which is not present.context(string | object)? (optional) element located by CSS|XPath|strict locator in which to perfrom search. (optional, defaultnull)
Returns void automatically synchronized promise through #recorder
Detox
Checks text not to be visible. Use second parameter to narrow down the search.
I.dontSee('Record created');I.dontSee('Record updated', '#message');I.dontSee('Record deleted', '~message');Parameters
textstring to check invisibilitycontext(string | object | null) element in which to search for text (optional, defaultnull)
I.dontSeeCheckboxIsChecked()
Section titled “I.dontSeeCheckboxIsChecked()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Verifies that the specified checkbox is not checked.
I.dontSeeCheckboxIsChecked('#agree'); // located by IDI.dontSeeCheckboxIsChecked('I agree to terms'); // located by labelI.dontSeeCheckboxIsChecked('agree'); // located by nameParameters
Returns void automatically synchronized promise through #recorder
Detox
Not available in this helper.
I.dontSeeElement()
Section titled “I.dontSeeElement()”| Appium | Detox |
|---|---|
| Supported | Supported |
Appium
Opposite to seeElement. Checks that element is not visible (or in DOM)
The second parameter is a context (CSS or XPath locator) to narrow the search.
I.dontSeeElement('.modal'); // modal is not shownI.dontSeeElement('.modal', '#container');Parameters
locator(string | object) located by CSS|XPath|Strict locator.context(string? | object) (optional,nullby default) element located by CSS | XPath | strict locator. (optional, defaultnull)
Returns void automatically synchronized promise through #recorder
Detox
Checks that element is not visible. Use second parameter to narrow down the search.
I.dontSeeElement('~edit'); // located by accessibility idI.dontSeeElement('~edit', '#menu'); // element inside #menuParameters
locator(string | object) element to locatecontext(string | object | null) context element (optional, defaultnull)
I.dontSeeElementExists()
Section titled “I.dontSeeElementExists()”| Appium | Detox |
|---|---|
| Not supported | Supported |
Appium
Not available in this helper.
Detox
Checks that element not exists. Use second parameter to narrow down the search.
I.dontSeeElementExist('~edit'); // located by accessibility idI.dontSeeElementExist('~edit', '#menu'); // element inside #menuParameters
locator(string | object) element to locatecontext(string | object) context element (optional, defaultnull)
I.dontSeeInField()
Section titled “I.dontSeeInField()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Checks that value of input field or textarea doesn’t equal to given value
Opposite to seeInField.
The third parameter is an optional context (CSS or XPath locator) to narrow the search.
I.dontSeeInField('email', 'user@user.com'); // field by nameI.dontSeeInField({ css: 'form input.email' }, 'user@user.com'); // field by CSS// within a contextI.dontSeeInField('Name', 'old_value', '.form-container');Parameters
field(string | object) located by label|name|CSS|XPath|strict locator.value(string | object) value to check.context(string? | object) (optional,nullby default) element located by CSS | XPath | strict locator. (optional, defaultnull)
Returns void automatically synchronized promise through #recorder
Detox
Not available in this helper.
I.fillField()
Section titled “I.fillField()”| Appium | Detox |
|---|---|
| Supported | Supported |
Appium
Fills a text field or textarea, after clearing its value, with the given string. Field is located by name, label, CSS, or XPath.
The third parameter is an optional context (CSS or XPath locator) to narrow the search.
// by labelI.fillField('Email', 'hello@world.com');// by nameI.fillField('password', secret('123456'));// by CSSI.fillField('form#login input[name=username]', 'John');// or by strict locatorI.fillField({css: 'form#login input[name=username]'}, 'John');// within a contextI.fillField('Name', 'John', '#section2');Parameters
field(string | object) located by label|name|CSS|XPath|strict locator.value(string | object) text value to fill.context(string? | object) (optional,nullby default) element located by CSS | XPath | strict locator. (optional, defaultnull)
Returns void automatically synchronized promise through #recorder
Detox
Fills in text field in an app. A field can be located by text, accessibility id, id.
I.fillField('Username', 'davert');I.fillField('~name', 'davert');I.fillField({ android: 'NAME', ios: 'name' }, 'davert');Parameters
I.goBack()
Section titled “I.goBack()”| Appium | Detox |
|---|---|
| Not supported | Supported |
Appium
Not available in this helper.
Detox
Goes back on Android
I.goBack(); // on Android onlyI.grabAllContexts()
Section titled “I.grabAllContexts()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Get list of all available contexts
let contexts = await I.grabAllContexts();Returns Promise<Array<string>> Appium: support Android and iOS
Detox
Not available in this helper.
I.grabAttributeFrom()
Section titled “I.grabAttributeFrom()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Can be used for apps only with several values (“contentDescription”, “text”, “className”, “resourceId”)
Retrieves an attribute from an element located by CSS or XPath and returns it to test.
Resumes test execution, so should be used inside async with await operator.
If more than one element is found - attribute of first element is returned.
let hint = await I.grabAttributeFrom('#tooltip', 'title');Parameters
Returns Promise<string> attribute value
Detox
Not available in this helper.
I.grabAttributeFromAll()
Section titled “I.grabAttributeFromAll()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Can be used for apps only with several values (“contentDescription”, “text”, “className”, “resourceId”)
Retrieves an array of attributes from elements located by CSS or XPath and returns it to test.
Resumes test execution, so should be used inside async with await operator.
let hints = await I.grabAttributeFromAll('.tooltip', 'title');Parameters
Returns Promise<Array<string>> attribute value
Detox
Not available in this helper.
I.grabContext()
Section titled “I.grabContext()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Retrieve current context
let context = await I.grabContext();Returns Promise<(string | null)> Appium: support Android and iOS
Detox
Not available in this helper.
I.grabCurrentActivity()
Section titled “I.grabCurrentActivity()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Get current device activity.
let activity = await I.grabCurrentActivity();Returns Promise<string> Appium: support only Android
Detox
Not available in this helper.
I.grabNetworkConnection()
Section titled “I.grabNetworkConnection()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Get information about the current network connection (Data/WIFI/Airplane). The actual server value will be a number. However WebdriverIO additional properties to the response object to allow easier assertions.
let con = await I.grabNetworkConnection();Returns Promise<{}> Appium: support only Android
Detox
Not available in this helper.
I.grabNumberOfVisibleElements()
Section titled “I.grabNumberOfVisibleElements()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Grab number of visible elements by locator.
Resumes test execution, so should be used inside async function with await operator.
let numOfElements = await I.grabNumberOfVisibleElements('p');Parameters
Returns Promise<number> number of visible elements
Detox
Not available in this helper.
I.grabOrientation()
Section titled “I.grabOrientation()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Get current orientation.
let orientation = await I.grabOrientation();Returns Promise<string> Appium: support Android and iOS
Detox
Not available in this helper.
I.grabPlatform()
Section titled “I.grabPlatform()”| Appium | Detox |
|---|---|
| Not supported | Supported |
Appium
Not available in this helper.
Detox
Grab the device platform
const platform = await I.grabPlatform();I.grabSettings()
Section titled “I.grabSettings()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Get all the currently specified settings.
let settings = await I.grabSettings();Returns Promise<string> Appium: support Android and iOS
Detox
Not available in this helper.
I.grabTextFrom()
Section titled “I.grabTextFrom()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Retrieves a text from an element located by CSS or XPath and returns it to test.
Resumes test execution, so should be used inside async with await operator.
let pin = await I.grabTextFrom('#pin');If multiple elements found returns first element.
Parameters
Returns Promise<string> attribute value
Detox
Not available in this helper.
I.grabTextFromAll()
Section titled “I.grabTextFromAll()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Retrieves all texts from an element located by CSS or XPath and returns it to test.
Resumes test execution, so should be used inside async with await operator.
let pins = await I.grabTextFromAll('#pin li');Parameters
Returns Promise<Array<string>> attribute value
Detox
Not available in this helper.
I.grabValueFrom()
Section titled “I.grabValueFrom()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Retrieves a value from a form element located by CSS or XPath and returns it to test.
Resumes test execution, so should be used inside async function with await operator.
If more than one element is found - value of first element is returned.
let email = await I.grabValueFrom('input[name=email]');Parameters
Returns Promise<string> attribute value
Detox
Not available in this helper.
I.grabValueFromAll()
Section titled “I.grabValueFromAll()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Retrieves an array of value from a form located by CSS or XPath and returns it to test.
Resumes test execution, so should be used inside async function with await operator.
let inputs = await I.grabValueFromAll('//form/input');Parameters
Returns Promise<Array<string>> attribute value
Detox
Not available in this helper.
I.hideDeviceKeyboard()
Section titled “I.hideDeviceKeyboard()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Hide the keyboard.
// taps outside to hide keyboard per defaultI.hideDeviceKeyboard();Appium: support Android and iOS
Detox
Not available in this helper.
I.installApp()
Section titled “I.installApp()”| Appium | Detox |
|---|---|
| Supported | Supported |
Appium
Install an app on device.
I.installApp('/path/to/file.apk');Parameters
pathstring path to apk file
Returns Promise<void> Appium: support only Android
Detox
Installs a configured application. Application is installed by default.
I.installApp();I.launchApp()
Section titled “I.launchApp()”| Appium | Detox |
|---|---|
| Not supported | Supported |
Appium
Not available in this helper.
Detox
Launches an application. If application instance already exists, use relaunchApp.
I.launchApp();I.longPress()
Section titled “I.longPress()”| Appium | Detox |
|---|---|
| Not supported | Supported |
Appium
Not available in this helper.
Detox
Taps an element and holds for a requested time.
I.longPress('Login', 2); // locate by text, hold for 2 secondsI.longPress('~nav', 1); // locate by accessibility label, hold for secondI.longPress('Update', 2, '#menu'); // locate by text inside #menu, hold for 2 secondsParameters
locator(string | object) element to locatesecnumber number of seconds to hold tapcontext(string | object | null) context element (optional, defaultnull)
I.makeTouchAction()
Section titled “I.makeTouchAction()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
The Touch Action API provides the basis of all gestures that can be automated in Appium. At its core is the ability to chain together ad hoc individual actions, which will then be applied to an element in the application on the device. See complete documentation
I.makeTouchAction("~buttonStartWebviewCD", 'tap');Parameters
locatoraction
Returns Promise<void> Appium: support Android and iOS
Detox
Not available in this helper.
I.multiTap()
Section titled “I.multiTap()”| Appium | Detox |
|---|---|
| Not supported | Supported |
Appium
Not available in this helper.
Detox
Multi taps on an element. Element can be located by its text or id or accessibility id.
Set the number of taps in second argument. Optionally define the context element by third argument.
I.multiTap('Login', 2); // locate by textI.multiTap('~nav', 2); // locate by accessibility labelI.multiTap('#user', 2); // locate by idI.multiTap('Update', 2, '#menu'); // locate by idParameters
locator(string | object) element to locatenumnumber number of tapscontext(string | object | null) context element (optional, defaultnull)
I.openNotifications()
Section titled “I.openNotifications()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Open the notifications panel on the device.
I.openNotifications();Returns Promise<void> Appium: support only Android
Detox
Not available in this helper.
I.performSwipe()
Section titled “I.performSwipe()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Perform a swipe on the screen.
I.performSwipe({ x: 300, y: 100 }, { x: 200, y: 100 });Parameters
Detox
Not available in this helper.
I.pullFile()
Section titled “I.pullFile()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Pulls a file from the device.
I.pullFile('/storage/emulated/0/DCIM/logo.png', 'my/path');// save file to output dirI.pullFile('/storage/emulated/0/DCIM/logo.png', output_dir);Parameters
Returns Promise<string> Appium: support Android and iOS
Detox
Not available in this helper.
I.relaunchApp()
Section titled “I.relaunchApp()”| Appium | Detox |
|---|---|
| Not supported | Supported |
Appium
Not available in this helper.
Detox
Relaunches an application.
I.relaunchApp();I.removeApp()
Section titled “I.removeApp()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Remove an app from the device.
I.removeApp('appName', 'com.example.android.apis');Appium: support only Android
Parameters
Detox
Not available in this helper.
I.resetApp()
Section titled “I.resetApp()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Reset the currently running app for current session.
I.resetApp();Detox
Not available in this helper.
I.rotate()
Section titled “I.rotate()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Perform a rotation gesture centered on the specified element.
I.rotate(120, 120)See corresponding webdriverio reference.
Parameters
xydurationradiusrotationtouchCount
Returns Promise<void> Appium: support only iOS
Detox
Not available in this helper.
I.runInWeb()
Section titled “I.runInWeb()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Execute code only in Web mode.
I.runInWeb(() => { I.waitForElement('#data'); I.seeInCurrentUrl('/data');});Detox
Not available in this helper.
I.runOnAndroid()
Section titled “I.runOnAndroid()”| Appium | Detox |
|---|---|
| Supported | Supported |
Appium
Execute code only on Android
I.runOnAndroid(() => { I.click('io.selendroid.testapp:id/buttonTest');});Additional filter can be applied by checking for capabilities. For instance, this code will be executed only on Android 6.0:
I.runOnAndroid({platformVersion: '6.0'},() => { // ...});Also capabilities can be checked by a function. In this case, code will be executed only on Android >= 6.
I.runOnAndroid((caps) => { // caps is current config of desiredCapabiliites return caps.platformVersion >= 6},() => { // ...});Parameters
capsanyfnany
Detox
Execute code only on Android
I.runOnAndroid(() => { I.click('Button'); I.see('Hi, Android');});Parameters
fnFunction a function which will be executed on android
I.runOnIOS()
Section titled “I.runOnIOS()”| Appium | Detox |
|---|---|
| Supported | Supported |
Appium
Execute code only on iOS
I.runOnIOS(() => { I.click('//UIAApplication[1]/UIAWindow[1]/UIAButton[1]'); I.see('Hi, IOS', '~welcome');});Additional filter can be applied by checking for capabilities. For instance, this code will be executed only on iPhone 5s:
I.runOnIOS({deviceName: 'iPhone 5s'},() => { // ...});Also capabilities can be checked by a function.
I.runOnAndroid((caps) => { // caps is current config of desiredCapabiliites return caps.platformVersion >= 6},() => { // ...});Parameters
capsanyfnany
Detox
Execute code only on iOS
I.runOnIOS(() => { I.click('Button'); I.see('Hi, IOS');});Parameters
fnFunction a function which will be executed on iOS
I.saveScreenshot()
Section titled “I.saveScreenshot()”| Appium | Detox |
|---|---|
| Supported | Supported |
Appium
Saves a screenshot to ouput folder (set in codecept.conf.ts or codecept.conf.js). Filename is relative to output folder.
I.saveScreenshot('debug.png');Parameters
fileNamestring file name to save.
Returns Promise<void>
Detox
Saves a screenshot to the output dir
I.saveScreenshot('main-window.png');Parameters
namestring
I.scrollDown()
Section titled “I.scrollDown()”| Appium | Detox |
|---|---|
| Not supported | Supported |
Appium
Not available in this helper.
Detox
Scrolls to the bottom of an element.
I.scrollDown('#container');Parameters
I.scrollIntoView()
Section titled “I.scrollIntoView()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Scroll element into viewport.
I.scrollIntoView('#submit');I.scrollIntoView('#submit', true);I.scrollIntoView('#submit', { behavior: "smooth", block: "center", inline: "center" });Parameters
locator(string | object) located by CSS|XPath|strict locator.scrollIntoViewOptions(ScrollIntoViewOptions | boolean) either alignToTop=true|false or scrollIntoViewOptions. See https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoView.
Returns void automatically synchronized promise through #recorderSupported only for web testing
Detox
Not available in this helper.
I.scrollLeft()
Section titled “I.scrollLeft()”| Appium | Detox |
|---|---|
| Not supported | Supported |
Appium
Not available in this helper.
Detox
Scrolls to the left of an element.
I.scrollLeft('#container');Parameters
I.scrollRight()
Section titled “I.scrollRight()”| Appium | Detox |
|---|---|
| Not supported | Supported |
Appium
Not available in this helper.
Detox
Scrolls to the right of an element.
I.scrollRight('#container');Parameters
I.scrollToElement()
Section titled “I.scrollToElement()”| Appium | Detox |
|---|---|
| Not supported | Supported |
Appium
Not available in this helper.
Detox
Scrolls within a scrollable container to an element.
Parameters
targetLocator(string | object) Locator of the element to scroll tocontainerLocator(string | object) Locator of the scrollable containerdirectionstring ‘up’ or ‘down’ (optional, default'down')offsetnumber Offset for scroll, can be adjusted based on need (optional, default100)
I.scrollUp()
Section titled “I.scrollUp()”| Appium | Detox |
|---|---|
| Not supported | Supported |
Appium
Not available in this helper.
Detox
Scrolls to the top of an element.
I.scrollUp('#container');Parameters
I.see()
Section titled “I.see()”| Appium | Detox |
|---|---|
| Supported | Supported |
Appium
Checks that a page contains a visible text. Use context parameter to narrow down the search.
I.see('Welcome'); // text welcome on a pageI.see('Welcome', '.content'); // text inside .content divI.see('Register', {css: 'form.register'}); // use strict locatorParameters
textstring expected on page.context(string? | object) (optional,nullby default) element located by CSS|Xpath|strict locator in which to search for text. (optional, defaultnull)
Returns void automatically synchronized promise through #recorder
Detox
Checks text to be visible. Use second parameter to narrow down the search.
I.see('Record created');I.see('Record updated', '#message');I.see('Record deleted', '~message');Parameters
textstring to check visibilitycontext(string | object | null) element inside which to search for text (optional, defaultnull)
I.seeAppIsInstalled()
Section titled “I.seeAppIsInstalled()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Check if an app is installed.
I.seeAppIsInstalled("com.example.android.apis");Parameters
bundleIdstring String ID of bundled app
Returns Promise<void> Appium: support only Android
Detox
Not available in this helper.
I.seeAppIsNotInstalled()
Section titled “I.seeAppIsNotInstalled()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Check if an app is not installed.
I.seeAppIsNotInstalled("com.example.android.apis");Parameters
bundleIdstring String ID of bundled app
Returns Promise<void> Appium: support only Android
Detox
Not available in this helper.
I.seeCheckboxIsChecked()
Section titled “I.seeCheckboxIsChecked()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Verifies that the specified checkbox is checked.
I.seeCheckboxIsChecked('Agree');I.seeCheckboxIsChecked('#agree'); // I suppose user agreed to termsI.seeCheckboxIsChecked({css: '#signup_form input[type=checkbox]'});Parameters
Returns void automatically synchronized promise through #recorder
Detox
Not available in this helper.
I.seeCurrentActivityIs()
Section titled “I.seeCurrentActivityIs()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Check current activity on an Android device.
I.seeCurrentActivityIs(".HomeScreenActivity")Parameters
currentActivitystring
Returns Promise<void> Appium: support only Android
Detox
Not available in this helper.
I.seeDeviceIsLocked()
Section titled “I.seeDeviceIsLocked()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Check whether the device is locked.
I.seeDeviceIsLocked();Returns Promise<void> Appium: support only Android
Detox
Not available in this helper.
I.seeDeviceIsUnlocked()
Section titled “I.seeDeviceIsUnlocked()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Check whether the device is not locked.
I.seeDeviceIsUnlocked();Returns Promise<void> Appium: support only Android
Detox
Not available in this helper.
I.seeElement()
Section titled “I.seeElement()”| Appium | Detox |
|---|---|
| Supported | Supported |
Appium
Checks that a given Element is visible Element is located by CSS or XPath.
The second parameter is a context (CSS or XPath locator) to narrow the search.
I.seeElement('#modal');I.seeElement('#modal', '#container');Parameters
locator(string | object) located by CSS|XPath|strict locator.context(string? | object) (optional,nullby default) element located by CSS | XPath | strict locator. (optional, defaultnull)
Returns void automatically synchronized promise through #recorder
Detox
Checks for visibility of an element. Use second parameter to narrow down the search.
I.seeElement('~edit'); // located by accessibility idI.seeElement('~edit', '#menu'); // element inside #menuParameters
locator(string | object) element to locatecontext(string | object | null) context element (optional, defaultnull)
I.seeElementExists()
Section titled “I.seeElementExists()”| Appium | Detox |
|---|---|
| Not supported | Supported |
Appium
Not available in this helper.
Detox
Checks for existence of an element. An element can be visible or not. Use second parameter to narrow down the search.
I.seeElementExists('~edit'); // located by accessibility idI.seeElementExists('~edit', '#menu'); // element inside #menuParameters
locator(string | object) element to locatecontext(string | object) context element (optional, defaultnull)
I.seeInField()
Section titled “I.seeInField()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Checks that the given input field or textarea equals to given value. For fuzzy locators, fields are matched by label text, the “name” attribute, CSS, and XPath.
The third parameter is an optional context (CSS or XPath locator) to narrow the search.
I.seeInField('Username', 'davert');I.seeInField({css: 'form textarea'},'Type your comment here');I.seeInField('form input[type=hidden]','hidden_value');I.seeInField('#searchform input','Search');// within a contextI.seeInField('Name', 'John', '.form-container');Parameters
field(string | object) located by label|name|CSS|XPath|strict locator.value(string | object) value to check.context(string? | object) (optional,nullby default) element located by CSS | XPath | strict locator. (optional, defaultnull)
Returns void automatically synchronized promise through #recorder
Detox
Not available in this helper.
I.seeOrientationIs()
Section titled “I.seeOrientationIs()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Check the device orientation
I.seeOrientationIs('PORTRAIT');I.seeOrientationIs('LANDSCAPE')Parameters
orientation("LANDSCAPE"|"PORTRAIT") LANDSCAPE or PORTRAITAppium: support Android and iOS
Returns Promise<void>
Detox
Not available in this helper.
I.selectOption()
Section titled “I.selectOption()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Selects an option in a drop-down select. Field is searched by label | name | CSS | XPath. Option is selected by visible text or by value.
The third parameter is an optional context (CSS or XPath locator) to narrow the search.
I.selectOption('Choose Plan', 'Monthly'); // select by labelI.selectOption('subscription', 'Monthly'); // match option by textI.selectOption('subscription', '0'); // or by valueI.selectOption('//form/select[@name=account]','Premium');I.selectOption('form select[name=account]', 'Premium');I.selectOption({css: 'form select[name=account]'}, 'Premium');// within a contextI.selectOption('age', '21-60', '#section2');Provide an array for the second argument to select multiple options.
I.selectOption('Which OS do you use?', ['Android', 'iOS']);Parameters
select(string | object) field located by label|name|CSS|XPath|strict locator.option(string | Array<any>) visible text or value of option.context(string? | object) (optional,nullby default) element located by CSS | XPath | strict locator. (optional, defaultnull)
Returns void automatically synchronized promise through #recorderSupported only for web testing
Detox
Not available in this helper.
I.sendDeviceKeyEvent()
Section titled “I.sendDeviceKeyEvent()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Send a key event to the device. List of keys: https://developer.android.com/reference/android/view/KeyEvent.html
I.sendDeviceKeyEvent(3);Parameters
keyValuenumber Device specific key value
Returns Promise<void> Appium: support only Android
Detox
Not available in this helper.
I.setImmediateValue()
Section titled “I.setImmediateValue()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Set immediate value in app.
See corresponding webdriverio reference.
Parameters
idvalue
Returns Promise<void> Appium: support only iOS
Detox
Not available in this helper.
I.setLandscapeOrientation()
Section titled “I.setLandscapeOrientation()”| Appium | Detox |
|---|---|
| Not supported | Supported |
Appium
Not available in this helper.
Detox
Switches device to landscape orientation
I.setLandscapeOrientation();I.setNetworkConnection()
Section titled “I.setNetworkConnection()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Set network connection mode.
- airplane mode
- wifi mode
- data data
I.setNetworkConnection(0) // airplane mode off, wifi off, data offI.setNetworkConnection(1) // airplane mode on, wifi off, data offI.setNetworkConnection(2) // airplane mode off, wifi on, data offI.setNetworkConnection(4) // airplane mode off, wifi off, data onI.setNetworkConnection(6) // airplane mode off, wifi on, data onSee corresponding webdriverio reference.
Appium: support only Android
Parameters
valuenumber The network connection mode bitmask
Detox
Not available in this helper.
I.setOrientation()
Section titled “I.setOrientation()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Set a device orientation. Will fail, if app will not set orientation
I.setOrientation('PORTRAIT');I.setOrientation('LANDSCAPE')Parameters
orientation("LANDSCAPE"|"PORTRAIT") LANDSCAPE or PORTRAITAppium: support Android and iOS
Detox
Not available in this helper.
I.setPortraitOrientation()
Section titled “I.setPortraitOrientation()”| Appium | Detox |
|---|---|
| Not supported | Supported |
Appium
Not available in this helper.
Detox
Switches device to portrait orientation
I.setPortraitOrientation();I.setSettings()
Section titled “I.setSettings()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Update the current setting on the device
I.setSettings({cyberdelia: 'open'});Parameters
settingsobject objectAppium: support Android and iOS
Detox
Not available in this helper.
I.shakeDevice()
Section titled “I.shakeDevice()”| Appium | Detox |
|---|---|
| Supported | Supported |
Appium
Perform a shake action on the device.
I.shakeDevice();Returns Promise<void> Appium: support only iOS
Detox
Shakes the device.
I.shakeDevice();I.simulateTouchId()
Section titled “I.simulateTouchId()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Simulate Touch ID with either valid (match == true) or invalid (match == false) fingerprint.
I.touchId(); // simulates valid fingerprintI.touchId(true); // simulates valid fingerprintI.touchId(false); // simulates invalid fingerprintParameters
match
Returns Promise<void> Appium: support only iOS TODO: not tested
Detox
Not available in this helper.
I.startActivity()
Section titled “I.startActivity()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Start an arbitrary Android activity during a session.
I.startActivity('io.selendroid.testapp', '.RegisterUserActivity');Appium: support only Android
Parameters
Returns Promise<void>
Detox
Not available in this helper.
I.swipe()
Section titled “I.swipe()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Perform a swipe on the screen or an element.
let locator = "#io.selendroid.testapp:id/LinearLayout1";I.swipe(locator, 800, 1200, 1000);Parameters
locator(string | object)xoffsetnumberyoffsetnumberspeednumber (optional), 1000 by default (optional, default1000)
Returns Promise<void> Appium: support Android and iOS
Detox
Not available in this helper.
I.swipeDown()
Section titled “I.swipeDown()”| Appium | Detox |
|---|---|
| Supported | Supported |
Appium
Perform a swipe down on an element.
let locator = "#io.selendroid.testapp:id/LinearLayout1";I.swipeDown(locator); // simple swipeI.swipeDown(locator, 500); // set speedI.swipeDown(locator, 1200, 1000); // set offset and speedParameters
locator(string | object)yoffsetnumber? (optional) (optional, default1000)speednumber (optional), 1000 by default (optional, default1000)
Returns Promise<void> Appium: support Android and iOS
Detox
Performs a swipe up inside an element.
Can be slow or fast swipe.
I.swipeUp('#container');Parameters
locator(string | object) an element on which to perform swipespeedstring a speed to perform:sloworfast. (optional, default'slow')
I.swipeLeft()
Section titled “I.swipeLeft()”| Appium | Detox |
|---|---|
| Supported | Supported |
Appium
Perform a swipe left on an element.
let locator = "#io.selendroid.testapp:id/LinearLayout1";I.swipeLeft(locator); // simple swipeI.swipeLeft(locator, 500); // set speedI.swipeLeft(locator, 1200, 1000); // set offset and speedParameters
locator(string | object)xoffsetnumber? (optional) (optional, default1000)speednumber (optional), 1000 by default (optional, default1000)
Returns Promise<void> Appium: support Android and iOS
Detox
Performs a swipe up inside an element.
Can be slow or fast swipe.
I.swipeUp('#container');Parameters
locator(string | object) an element on which to perform swipespeedstring a speed to perform:sloworfast. (optional, default'slow')
I.swipeRight()
Section titled “I.swipeRight()”| Appium | Detox |
|---|---|
| Supported | Supported |
Appium
Perform a swipe right on an element.
let locator = "#io.selendroid.testapp:id/LinearLayout1";I.swipeRight(locator); // simple swipeI.swipeRight(locator, 500); // set speedI.swipeRight(locator, 1200, 1000); // set offset and speedParameters
locator(string | object)xoffsetnumber? (optional) (optional, default1000)speednumber (optional), 1000 by default (optional, default1000)
Returns Promise<void> Appium: support Android and iOS
Detox
Performs a swipe up inside an element.
Can be slow or fast swipe.
I.swipeUp('#container');Parameters
locator(string | object) an element on which to perform swipespeedstring a speed to perform:sloworfast. (optional, default'slow')
I.swipeTo()
Section titled “I.swipeTo()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Perform a swipe in selected direction on an element to searchable element.
I.swipeTo( "android.widget.CheckBox", // searchable element "//android.widget.ScrollView/android.widget.LinearLayout", // scroll element "up", // direction 30, 100, 500);Parameters
searchableLocatorstringscrollLocatorstringdirectionstringtimeoutnumberoffsetnumberspeednumber
Returns Promise<void> Appium: support Android and iOS
Detox
Not available in this helper.
I.swipeUp()
Section titled “I.swipeUp()”| Appium | Detox |
|---|---|
| Supported | Supported |
Appium
Perform a swipe up on an element.
let locator = "#io.selendroid.testapp:id/LinearLayout1";I.swipeUp(locator); // simple swipeI.swipeUp(locator, 500); // set speedI.swipeUp(locator, 1200, 1000); // set offset and speedParameters
locator(string | object)yoffsetnumber? (optional) (optional, default1000)speednumber (optional), 1000 by default (optional, default1000)
Returns Promise<void> Appium: support Android and iOS
Detox
Performs a swipe up inside an element.
Can be slow or fast swipe.
I.swipeUp('#container');Parameters
locator(string | object) an element on which to perform swipespeedstring a speed to perform:sloworfast. (optional, default'slow')
I.switchToContext()
Section titled “I.switchToContext()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Switch to the specified context.
Parameters
contextany the context to switch to
Detox
Not available in this helper.
I.switchToNative()
Section titled “I.switchToNative()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Switches to native context. By default switches to NATIVE_APP context unless other specified.
I.switchToNative();
// or set context explicitlyI.switchToNative('SOME_OTHER_CONTEXT');Parameters
contextany? (optional, defaultnull)
Returns Promise<void>
Detox
Not available in this helper.
I.switchToWeb()
Section titled “I.switchToWeb()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Switches to web context. If no context is provided switches to the first detected web context
// switch to first web contextI.switchToWeb();
// or set the context explicitlyI.switchToWeb('WEBVIEW_io.selendroid.testapp');Parameters
contextstring?
Returns Promise<void>
Detox
Not available in this helper.
I.tap()
Section titled “I.tap()”| Appium | Detox |
|---|---|
| Supported | Supported |
Appium
Taps on element.
I.tap("~buttonStartWebviewCD");Shortcut for makeTouchAction
Parameters
locatorany
Returns Promise<void>
Detox
Taps on an element. Element can be located by its text or id or accessibility id.
The second parameter is a context element to narrow the search.
Same as click
I.tap('Login'); // locate by textI.tap('~nav-1'); // locate by accessibility labelI.tap('#user'); // locate by idI.tap('Login', '#nav'); // locate by text inside #navI.tap({ ios: 'Save', android: 'SAVE' }, '#main'); // different texts on iOS and AndroidParameters
I.tapByLabel()
Section titled “I.tapByLabel()”| Appium | Detox |
|---|---|
| Not supported | Supported |
Appium
Not available in this helper.
Detox
Clicks on an element. Element can be located by its label
The second parameter is a context (id | type | accessibility id) to narrow the search.
I.tapByLabel('Login'); // locate by textI.tapByLabel('Login', '#nav'); // locate by text inside #navParameters
I.tapReturnKey()
Section titled “I.tapReturnKey()”| Appium | Detox |
|---|---|
| Not supported | Supported |
Appium
Not available in this helper.
Detox
Taps return key. A field can be located by text, accessibility id, id.
I.tapReturnKey('Username');I.tapReturnKey('~name');I.tapReturnKey({ android: 'NAME', ios: 'name' });Parameters
I.touchPerform()
Section titled “I.touchPerform()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Performs a specific touch action. The action object need to contain the action name, x/y coordinates
I.touchPerform([{ action: 'press', options: { x: 100, y: 200 }}, {action: 'release'}])
I.touchPerform([{ action: 'tap', options: { element: '1', // json web element was queried before x: 10, // x offset y: 20, // y offset count: 1 // number of touches }}]);Appium: support Android and iOS
Parameters
actionsArray Array of touch actions
Detox
Not available in this helper.
I.wait()
Section titled “I.wait()”| Appium | Detox |
|---|---|
| Not supported | Supported |
Appium
Not available in this helper.
Detox
Waits for number of seconds
I.wait(2); // waits for 2 secondsParameters
secnumber number of seconds to wait
I.waitForElement()
Section titled “I.waitForElement()”| Appium | Detox |
|---|---|
| Supported | Supported |
Appium
Waits for element to be present on page (by default waits for 1sec). Element can be located by CSS or XPath.
I.waitForElement('.btn.continue');I.waitForElement('.btn.continue', 5); // wait for 5 secsParameters
locator(string | object) element located by CSS|XPath|strict locator.secnumber? (optional,1by default) time in seconds to wait (optional, defaultnull)
Returns void automatically synchronized promise through #recorder
Detox
Waits for an element to exist on page.
I.waitForElement('#message', 1); // wait for 1 secondParameters
locator(string | object) an element to wait forsecnumber number of seconds to wait, 5 by default (optional, default5)
I.waitForElementVisible()
Section titled “I.waitForElementVisible()”| Appium | Detox |
|---|---|
| Not supported | Supported |
Appium
Not available in this helper.
Detox
Waits for an element to be visible on page.
I.waitForElementVisible('#message', 1); // wait for 1 secondParameters
locator(string | object) an element to wait forsecnumber number of seconds to wait (optional, default5)
I.waitForInvisible()
Section titled “I.waitForInvisible()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Waits for an element to be removed or become invisible on a page (by default waits for 1sec). Element can be located by CSS or XPath.
I.waitForInvisible('#popup');Parameters
locator(string | object) element located by CSS|XPath|strict locator.secnumber (optional,1by default) time in seconds to wait (optional, default1)
Returns void automatically synchronized promise through #recorder
Detox
Not available in this helper.
I.waitForText()
Section titled “I.waitForText()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Waits for a text to appear (by default waits for 1sec). Element can be located by CSS or XPath. Narrow down search results by providing context.
I.waitForText('Thank you, form has been submitted');I.waitForText('Thank you, form has been submitted', 5, '#modal');Parameters
textstring to wait for.secnumber (optional,1by default) time in seconds to wait (optional, default1)context(string | object)? (optional) element located by CSS|XPath|strict locator. (optional, defaultnull)
Returns void automatically synchronized promise through #recorder
Detox
Not available in this helper.
I.waitForVisible()
Section titled “I.waitForVisible()”| Appium | Detox |
|---|---|
| Supported | Not supported |
Appium
Waits for an element to become visible on a page (by default waits for 1sec). Element can be located by CSS or XPath.
I.waitForVisible('#popup');Parameters
locator(string | object) element located by CSS|XPath|strict locator.secnumber (optional,1by default) time in seconds to wait (optional, default1)
Returns void automatically synchronized promise through #recorder
Detox
Not available in this helper.
I.waitToHide()
Section titled “I.waitToHide()”| Appium | Detox |
|---|---|
| Not supported | Supported |
Appium
Not available in this helper.
Detox
Waits an elmenet to become not visible.
I.waitToHide('#message', 2); // wait for 2 secondsParameters