mob

Provides methods for mobile automation.

Locators:

  • /XPATH - Locates element using an XPath 1.0 expression.

  • ~ACCESSIBILITY_ID - Locates element by its Accessibility Id.

  • id=ID - Locates element by its id.

  • class=CLASS - Locates element by its class.

  • text=TEXT - Locates element by its visible text.

  • text-contains=TEXT - Locates element whose visible text contains the specified string.

  • desc=DESCRIPTION - Locates element by its description.

  • desc-contains=DESCRIPTION - Locates element whose description contains the specified string.

  • scrollable - Locates elements that are scrollable.

  • /XPATH - Locates element using an XPath 1.0 expression.

  • id=ID - Locates element by its ID.

  • ~ACCESSIBILITY_ID - Locates element by its Accessibility Id.

  • -ios predicate string:PREDICATE_STRING - Locates element using a predicate query.

  • -ios class chain:CLASS_CHAIN - Locates element using a class chain expression.

  • /XPATH - Locates element using an XPath 1.0 expression.

  • id=ID - Locates element by its id.

  • name=NAME - Locates element by its name attribute.

  • tag=NAME - Locates element by its tag name.

  • link=TEXT - Locates anchor element whose text matches the given string.

  • link-contains=TEXT - Locates anchor element whose text contains the given string.

  • css=CSS_SELECTOR - Locates element using a CSS selector.

Pattern arguments:

Commands which expect a string matching pattern in their arguments, support following patterns unless specified otherwise:

  • regex:PATTERN - Match using regular expression.

  • PATTERN - Verbatim matching.

alertAccept

Accepts an alert or a confirmation dialog.

In case of an alert box this command is identical to alertDismiss.

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
mob.click("id=Submit");// Clicks an element and opens an alert.
mob.alertAccept();//Automatically press on 'OK' button in the alert pop-up.

alertDismiss

Dismisses an alert or a confirmation dialog.

In case of an alert box this command is identical to alertAccept.

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
mob.click("id=Submit");// Clicks an element and opens an alert.
mob.alertDismiss();//Automatically press on 'Cancel' button in the alert pop-up.

assertAlert

Asserts whether alert matches the specified pattern and dismisses it.

Text pattern can be any of the supported string matching patterns(on the top of page).

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
mob.click("id=Submit");// Clicks an element and opens an alert.
mob.assertAlert("Your Alert's text");//Asserts the alert's text.

Parameters:

NameTypeDescription

pattern

String

Text pattern.

timeout

Number

optional Timeout in milliseconds. Default is 60 seconds.

assertText

Asserts element's inner text.

Text pattern can be any of the supported string matching patterns (on the top of page). If the element is not interactable, then it will allways return empty string as its text.

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
mob.assertText("id=UserName","John Doe");// Asserts if an element’s text is as expected.

Parameters:

NameTypeDescription

locator

String|Element

Element locator.

pattern

String

Assertion text or pattern.

timeout

Number

optional Timeout in milliseconds. Default is 60 seconds.

assertTitle

Asserts the page title.

Assertion pattern can be any of the supported string matching patterns(on the top of page).

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
mob.assertTitle("Your websites title!");// Asserts if the title of the page.

Parameters:

NameTypeDescription

pattern

String

Assertion text or pattern.

timeout

Number

optional Timeout in milliseconds. Default is 60 seconds.

assertValue

Asserts element's value.

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
mob.assertValue("id=UserName", "John Doe");// Asserts if the value of an element.

Parameters:

NameTypeDescription

locator

String|Element

Element locator.

pattern

String

Value pattern.

timeout

Number

optional Timeout in milliseconds. Default is 60 seconds.

back

Navigate backwards in the browser history or simulates back button on Android device.

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
mob.click("id=NextPage);// Clicks an element and opens an alert.
mob.back();//Navigate back to previous page.

clear

Clears element's value or content

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
mob.type("id=Password", "Password");//Types a password to a field.
mob.clear("id=Password");//Clears the characters from the field of an element.

Parameters:

NameTypeDescription

locator

String|Element

Element locator.

timeout

Number

optional Timeout in milliseconds. Default is 60 seconds.

click

Clicks on an element.

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
mob.click("id=Submit");// Clicks an element.

Parameters:

NameTypeDescription

locator

String|Element

Element locator.

timeout

Number

optional Timeout in milliseconds. Default is 60 seconds.

clickHidden

Clicks on a non-visible element.

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
mob.clickHidden("id=hiddenContent);// Clicks an hidden element.

Parameters:

NameTypeDescription

locator

String|Element

Element locator.

clickParent

Boolean

optional If true, then parent of the element is clicked.

clickLong

Performs a long click/touch on an element.

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
mob.clickLong("id=Mark",6000);// Clicks an element for a certain duration.

Parameters:

NameTypeDescription

locator

String|Element

Element locator.

duration

Number

Touch duration in milliseconds.

timeout

Number

optional Timeout in milliseconds. Default is 60 seconds.

clickMultipleTimes

Performs tap on an element multiple times in quick succession.

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
mob.clickMultipleTimes("id=Mark",4);// Clicks an element certain amount of times.

Parameters:

NameTypeDescription

locator

String|Element

Element locator.

taps

Number

Number of taps.

timeout

Number

optional Timeout in milliseconds. Default is 60 seconds.

closeApp

Closes the currently open app.

** Usage example:**

mob.init(caps); // Starts a mobile session and opens app from desired capabilities
mob.launchApp(); // Launch the app.
mob.closeApp(); // Close the app.

debug

Stop test execution and allow interactive command execution (REPL).

** Usage example:**

mob.init();
mob.open("www.yourwebsite.com");
mob.debug();

dispose

Ends the current session.

Parameters:

NameTypeDescription

status

String

optional Test status, either passed or failed.

dragAndDrop

Tap on an element, drag by the specified offset, and release.

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
mob.dragAndDrop("id=Mark",-80,100);// Tap on an element, drag by the specified offset, and release.

Parameters:

NameTypeDescription

locator

String|Element

Element locator on which to perform the initial tap.

xoffset

Number

Horizontal offset. Positive for right direction; Negative for left.

yoffset

Number

Vertical offset. Positive for down direction; Negative for up.

timeout

Number

optional Timeout in milliseconds. Default is 60 seconds.

enableNetwork

Enable or disable wifi or data.

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
mob.enableNetwork(true,false);//Enable wifi and disable data.

Parameters:

NameTypeDescription

wifi

Boolean

Enable (true) or disable (false) wifi.

data

Boolean

Enable (true) or disable (false) data.

execute

Executes JavaScript in the context of the currently selected frame or window.

If return value is null or there is no return value, null is returned.

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
mob.execute(function(){
  angular.element("#closeBtn").trigger('ng-click').click()
});//Executes / injects a javascript functions.

Parameters:

NameTypeDescription

script

String|Function

The JavaScript to execute.

arg

...Object

optional Optional arguments to be passed to the JavaScript function.

Returns:

Object - The return value.

findElement

Finds an element.

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
var el = mob.findElement("id=Password");
mob.click(el);

Parameters:

NameTypeDescription

locator

String

Element locator.

parent

Element

optional Optional parent element for relative search.

timeout

Number

optional Timeout in milliseconds. Default is 60 seconds.

Returns:

Element - A Element object.

findElements

Finds elements.

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
var els = mob.findElements("//div");
for (let el of els) {
 var text = mob.getText(el);
 log.info(text);
}

Parameters:

NameTypeDescription

locator

String

Element locator.

parent

Element

optional Optional parent element for relative search.

timeout

Number

optional Timeout in milliseconds. Default is 60 seconds.

Returns:

Array.<Element> - Collection of Element objects.

getAlertText

Gets the text displayed by an alert or confirm dialog.

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
mob.click("id=Submit");// Clicks an element and opens an alert.
var a = mob.getAlertText();//Gets alert text.

Returns:

String - Alert's text.

getAppiumLogs

Collects logs from the Appium server.

** Usage example:**

mob.init(caps); //Starts a mobile session and opens app from desired capabilities
mob.getAppiumLogs(); //Collects logs from the Appium server

Returns:

Array.<Object> - A list of logs.

getBrowserLogs

Collects browser logs from the mobile device.

** Usage example:**

mob.init(caps); //Starts a mobile session and opens app from desired capabilities
mob.getBrowserLogs(); //Collects logs from the browser console

Returns:

Array.<Object> - A list of logs.

getCapabilities

Returns currently defined capabilities.

Returns:

Object - Current capabilities object.

getCurrentActivity

Gets current Android app's activity name.

** Usage example:**

mob.init(caps); // Starts a mobile session and opens app from desired capabilities
let activity = mob.getCurrentActivity(); // Gets current Android activity.

getCurrentPackage

Gets current Android app's package name.

** Usage example:**

mob.init(caps); // Starts a mobile session and opens app from desired capabilities
let package = mob.getCurrentPackage(); // Gets current Android package.

getDeviceLogs

Collects logs from the mobile device.

** Usage example:**

mob.init(caps); //Starts a mobile session and opens app from desired capabilities
mob.getDeviceLogs(); //Collects logs from the mobile device

Returns:

Array.<Object> - A list of logs.

getDeviceTime

Gets the time on the device.

** Usage example:**

mob.init(caps); //Starts a mobile session and opens app from desired capabilities
mob.getDeviceTime(); //Gets the device time

Returns:

String - Time.

getDriver

Returns the underlying WDIO driver.

Returns:

Object - WDIO driver.

getLocation

Get element's location.

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
var loc = mob.getLocation("id=element");//Get element's location.
var x = loc.x;
var y = loc.y;

Parameters:

NameTypeDescription

locator

String|Element

Element locator.

timeout

Number

optional Timeout in milliseconds. Default is 60 seconds.

Returns:

Object - X and Y location of the element relative to top-left page corner.

getSource

Gets the source code of the page.

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
var a = mob.getSource();//Gets the source code of the page.

Returns:

String - HTML in case of web or hybrid application or XML in case of native.

getText

Returns the text (rendered text shown to the user; whitespace-trimmed) of an element.

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
var a = mob.getText("id=TextArea");//Gets the text from an element.

Parameters:

NameTypeDescription

locator

String|Element

Element locator.

timeout

Number

optional Timeout in milliseconds. Default is 60 seconds.

Returns:

String - Element's text.

getTitle

Returns the title of the currently active window.

Returns:

String - The page title.

getUrl

Gets the URL of the currently active window.

** Usage example:**

mob.init();//Opens browser session.
mob.open("www.yourwebsite.com");// Opens a website.
mob.getUrl();//Gets the url from the current page.

Returns:

String - The page URL.

getValue

Gets element's value (whitespace-trimmed).

** Usage example:**

mob.init(caps);
var a = mob.getValue("id=ValueArea");//Gets the value from an element.

Parameters:

NameTypeDescription

locator

String|Element

Element locator.

timeout

Number

optional Timeout in milliseconds. Default is 60 seconds.

Returns:

String - Element's value.

getWindowHandles

Gets handles of currently open windows.

** Usage example:**

mob.init();// Starts a mobile session.
mob.open("www.yourwebsite.com");// Opens a website.
mob.getWindowHandles();//Gets the window handles of currently open windows.

Returns:

Array.<String> - Array of all available window handles.

hideKeyboard

Hides device keyboard.

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
mob.type("id=Password", "Password");//Types a password to a field.
mob.hideKeyboard("pressKey", "Done");//Hides device keyboard.

Parameters:

NameTypeDescription

strategy

String

optional Strategy to use for closing the keyboard - 'press', 'pressKey', 'swipeDown', 'tapOut', 'tapOutside', 'default'.

key

String

optional Key value if strategy is 'pressKey'.

keyCode

String

optional Key code if strategy is 'pressKey'.

keyName

String

optional Key name if strategy is 'pressKey'.

init

Initializes a new Appium session.

Parameters:

NameTypeDescription

caps

String

optional Desired capabilities. If not specified capabilities will be taken from suite definition.

appiumUrl

String

optional Remote Appium server URL (default: http://localhost:4723/wd/hub).

installApp

Install an app on the remote device.

** Usage example:**

mob.init(caps); // Starts a mobile session and opens app from desired capabilities
mob.installApp('/mylocalappfile.apk'); // Install the app.

Parameters:

NameTypeDescription

appLocalPath

String

The local file path to APK or IPA file.

isAppInstalled

Determines if an app is installed on the device.

** Usage example:**

mob.init(caps); //Starts a mobile session and opens app from desired capabilities
let installed = mob.isAppInstalled('com.android.calculator2'); // Determines if calculator app is installed.

Parameters:

NameTypeDescription

app

String

App's ID.

isCheckable

Determines if checkbox or radio element is checkable.

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
mob.isCheckable("id=checkBox");//Determines if checkbox or radio element is checkable.

Parameters:

NameTypeDescription

locator

String|Element

Element locator.

timeout

Number

optional Timeout in milliseconds. Default is 60 seconds.

Returns:

Boolean - true if element is checkable. false otherwise.

isChecked

Determines if checkbox or radio element is checked.

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
mob.isChecked("id=checkBox");//Determines if checkbox or radio element is checked.

Parameters:

NameTypeDescription

locator

String|Element

Element locator.

timeout

Number

optional Timeout in milliseconds. Default is 60 seconds.

Returns:

Boolean - true if element is checked. false otherwise.

isClickable

Determines if an element is clickable.

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
mob.isClickable("id=Element");//Determines if element is clickable.

Parameters:

NameTypeDescription

locator

String|Element

Element locator.

timeout

Number

optional Timeout in milliseconds. Default is 60 seconds.

Returns:

Boolean - true if element is clickable. false otherwise.

isExist

Wait for an element to become available.

The element is not necessary needs to be visible.

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
mob.isExist("id=Element");//Determines if element exists.

Parameters:

NameTypeDescription

locator

String|Element

Element locator.

timeout

Number

optional Time in milliseconds to wait for the element. Default is 60 seconds.

Returns:

Boolean - true if the element exists. false otherwise.

isSelected

Determines if an element is selected.

** Usage example:**

mob.init(caps);
var a = mob.isSelected("id=Selection");
if (a) {
 ...
} else {
 ...
}

Parameters:

NameTypeDescription

locator

String|Element

Element locator.

timeout

Number

optional Timeout in milliseconds. Default is 60 seconds.

Returns:

Boolean - true if element is selected. false otherwise.

isVisible

Checks if element is present and visible. Returns false if element was not found or wasn't visible within the specified timeout.

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
mob.isVisible("id=Selection");//Determines if element is visible.

Parameters:

NameTypeDescription

locator

String|Element

An element locator.

timeout

Number

optional Timeout in milliseconds to wait for element to appear. Default is 60 seconds.

Returns:

Boolean - True if element was found and it was visible. False otherwise.

isWebViewContext

Checks if the current context is of WebView type.

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
mob.isWebViewContext();//Checks if the current context is of WebView type.

Returns:

Boolean - true if the context name is WEBVIEW or CHROMIUM.

launchApp

Launches the app defined in the current session's capabilities.

** Usage example:**

mob.init(caps); // Starts a mobile session and opens app from desired capabilities
mob.launchApp(); // Launch the app defined in the session's capabilities.

longPressKeyCode

Press and hold a particular key code on the device.

** Usage example:**

https://developer.android.com/reference/android/view/KeyEvent.html - list of key codes
mob.init();//Starts a mobile session
mob.open('https://keycode.info/');
mob.longPressKeyCode(32);// 32 - d key

Parameters:

NameTypeDescription

keycode

Number

Key code pressed on the device.

open

Opens an URL.

The open command waits for the page to load before proceeding.

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
mob.open('www.yourwebsite.com');//Opens an URL.

Parameters:

NameTypeDescription

url

String

The URL to open; may be relative or absolute.

pause

Pause test execution for the given amount of milliseconds.

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
mob.pause(10*1000);//Pauses the execution for 10 seconds (10000ms)

Parameters:

NameTypeDescription

ms

Number

Milliseconds to pause the execution for.

removeApp

Remove an app from the device.

** Usage example:**

mob.init(caps); // Starts a mobile session and opens app from desired capabilities
mob.removeApp('com.android.calculator2'); // Remove the calculator app from the device.

Parameters:

NameTypeDescription

app

String

App's ID.

resetApp

Reset the currently running app's state (e.g. local settings) on the device.

** Usage example:**

mob.init(caps); // Starts a mobile session and opens app from desired capabilities
mob.resetApp(); // Reset curently running app

scrollIntoElement

Scrolls the view element until a specified target element inside the view is found.

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
mob.scrollIntoElement('id=bottomPanel','id=Button',0,30,50);//Scrolls the view element until a specified target element inside the view is found.

Parameters:

NameTypeDescription

scrollElmLocator

String

View element to scroll.

findElmLocator

String

Target element to find in the view.

xoffset

Number

optional Indicates the size in pixels of the horizontal scroll step (positive - scroll right, negative - scroll left). Default is 0.

yoffset

Number

optional Indicates the size in pixels of the vertical scroll step (positive - scroll down, negative - scroll up). Default is 30.

retries

Number

optional Indicates the number of scroll retries before giving up if element not found. Default is 50.

timeout

Number

optional Timeout in milliseconds. Default is 60 seconds.

duration

Number

optional Duration of swipe. Default is 3000 (3sec)

scrollIntoView

Scrolls the page or a container element to the location of the specified element.

** Usage example:**

mob.scrollIntoView('id=bottomPanel', true);
// or
mob.scrollIntoView('id=bottomPanel', {
 behavior: 'auto', // Optional. Defines the transition animation: `auto` or `smooth`. Defaults to `auto`.
 block: 'start',   // Optional. Defines vertical alignment - `start`, `center`, `end`, `nearest`. Defaults to `start`.
 inline: 'start'   // Optional. Defines horizontal alignment - `start`, `center`, `end`, `nearest`. Defaults to `start`.
});

Parameters:

NameTypeDescription

locator

String|Element

An element locator.

options

Boolean|Object

optional If true, the top of the element will be aligned to the top of the visible area of the scrollable ancestor. This is the default. If false, the bottom of the element will be aligned to the bottom of the visible area of the scrollable ancestor. This parameter can also accept an options object. See the usage example above.

timeout

Number

optional Timeout in milliseconds. Default is 60 seconds.

select

Selects an option from a drop-down list using an option locator. This command works with multiple-choice lists as well.

Option locator can be one of the following (No prefix is same as label matching): - label=STRING - Matches option based on the visible text. - value=STRING - Matches option based on its value. - index=STRING - Matches option based on its index. The index is 0-based.

** Usage example:**

mob.init(); //Starts a mobile session
mob.open("www.yourwebsite.com");// Opens a website.
mob.select("id=Selection","label=United States");// Selects an option from a list.

Parameters:

NameTypeDescription

selectLocator

String

An element locator identifying a drop-down menu.

optionLocator

String

An option locator.

timeout

Number

optional Timeout in milliseconds. Default is 60 seconds.

selectFrame

Selects a frame or an iframe within the current window.

Available frame locators: - 'parent' - Select parent frame. - 'top' - Select top window. - NUMBER - Select frame by its 0-based index. - LOCATOR - Locator identifying the frame (relative to the top window). Multiple locators can be passed in order to switch between nested frames.

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
mob.selectFrame("//iframe[@id='frame1']", "//iframe[@id='nested_frame']");

Parameters:

NameTypeDescription

frameLocator

...String|Number

optional A locator identifying the frame or iframe. Or a series of locators.

selectWindow

Selects window. Once window has been selected, all commands go to that window.

windowLocator can be:

  • title=TITLE Switch to the first window which matches the specified title. TITLE can be any ofthe supported string matching patterns (see top of the page). When using title locator, this commandwill wait for the window to appear first similarly to waitForWindow command.

  • url=URL Switch to the first window which matches the specified URL. URL can be any ofthe supported string matching patterns (see top of the page). When using url locator, this commandwill wait for the window to appear first similarly to waitForWindow command.

  • windowHandle Switch to a window using its unique handle.

** Usage example:**

mob.init();// Starts a mobile session.
mob.open("www.yourwebsite.com");// Opens a website.
mob.selectWindow("title=Website");// Selects and focus a window.

Parameters:

NameTypeDescription

windowLocator

String

optional Window locator.

timeout

Number

optional Timeout in milliseconds when using 'title' window locating strategy. Default is 60 seconds.

Returns:

String - windowHandle of the previously selected window.

sendKeys

Send a sequence of keyboard strokes to the active window or element.

Refer to Key Codes for the list of supported raw keyboard key codes.

** Usage example:**

mob.init();//Opens browser session.
mob.open("www.yourwebsite.com");// Opens a website.
mob.sendKeys("Hello World");
mob.sendKeys(["Backspace", "Backspace", "Enter"]); // send two Backspace key codes and Enter.
// Unicode representation can be used directly as well:
mob.sendKeys("Hello World\uE003\uE003\uE007");

Parameters:

NameTypeDescription

value

String|Array.<String>

Sequence of key strokes to send. Can be either a string or an array of strings for sending raw key codes.

setContext

Sets a specific context (NATIVE_APP, WEBVIEW, etc.).

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
mob.setContext('NATIVE_APP');//Sets a specific context (NATIVE_APP, WEBVIEW, etc.).

Parameters:

NameTypeDescription

context

String

The context name.

setNativeContext

Sets context to NATIVE_APP.

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
mob.setNativeContext();//Sets context to NATIVE_APP.

setTimeout

Specifies the amount of time that Oxygen will wait for actions to complete.

This includes the open command, waitFor* commands, and commands which wait for elements to appear in DOM or become visible before operating on them. If command wasn't able to complete within the specified period it will fail the test. The default time-out is 60 seconds.

** Usage example:**

mob.init();//Opens browser session.
mob.setTimeout(60000);//Sets the time out to amount of milliseconds .

Parameters:

NameTypeDescription

timeout

Number

A time-out in milliseconds.

setWebViewContext

Sets context to the first available WEBVIEW or CHROMIUM (Crosswalk WebView) view.

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
mob.setWebViewContext();//Sets context to the first available WEBVIEW or CHROMIUM (Crosswalk WebView) view.

Returns:

String - Context name, or null if no web context found.

shake

Perform shake action on the device

Supported on Android and iOS 9 or earlier versions.

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
mob.shake();//Perform shake action on the device.

Clicks SMS message URL.

SMSPopup application must be installed and running on the device to use this command. https://github.com/oxygenhq/android-smspopup/releases

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
mob.click("id=sendSmS");// Clicks an element.
mob.smsClickLink(60000);//Clicks SMS message URL.

Parameters:

NameTypeDescription

timeout

Number

optional Time in milliseconds to wait for sms popup. Default is 60 seconds.

smsGetText

Gets SMS text on Android phone.

SMSPopup application must be installed and running on the device to use this command. https://github.com/oxygenhq/android-smspopup/releases

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
mob.click("id=sendSmS");// Clicks an element.
var a = mob.smsGetText(60000);//Gets SMS text on Android phone.

Parameters:

NameTypeDescription

timeout

Number

optional Time in milliseconds to wait for sms popup. Default is 60 seconds.

Returns:

String - SMS text.

swipe

Perform a swipe on an element.

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
mob.swipe("id=Element",-60,0,150);//Perform a swipe on the screen or an element.

Parameters:

NameTypeDescription

locator

String|Element

Locator of the element to swipe on.

xoffset

Number

optional Horizontal offset (positive - scroll right, negative - scroll left). Default is 0.

yoffset

Number

optional Vertical offset (positive - scroll down, negative - scroll up). Default is 30.

timeout

Number

optional Timeout in milliseconds. Default is 60 seconds.

duration

Number

optional Duration of swipe. Default is 3000 (3sec)

swipeElement

Perform swipe on the element.

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
mob.swipeElement("id=Element",-60,0,150);//Perform a swipe on the screen or an element.

Parameters:

NameTypeDescription

locator

String

Locator of the element to swipe on.

xoffset

Number

optional Horizontal offset (positive - scroll right, negative - scroll left). Default is 0.

yoffset

Number

optional Vertical offset (positive - scroll down, negative - scroll up). Default is 30.

timeout

Number

optional Timeout in milliseconds. Default is 60 seconds.

duration

Number

optional Duration of swipe. Default is 3000 (3sec)

swipeScreen

Perform a swipe on the screen.

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
mob.swipeScreen(0, 0, 0, 900);//Perform a swipe on the screen

Parameters:

NameTypeDescription

x1

Number

Starting X position (top-left screen corner is the origin)

y1

Number

Starting Y position.

x2

Number

Ending X position.

y2

Number

Ending Y position.

duration

Number

optional Duration of swipe. Default is 3000 (3sec)

takeScreenshot

Take a screenshot of the current page or screen and return it as base64 encoded string.

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
var ss = mob.takeScreenshot();//Take a screenshot of the current page or screen and return it as base64 encoded string.
require("fs").writeFileSync("c:\\screenshot.png", ss, 'base64');

Returns:

String - Screenshot image encoded as a base64 string.

tap

Perform tap at the specified coordinate.

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
mob.tap(60,300);//Perform tap at the specified coordinate.

Parameters:

NameTypeDescription

x

Number

x offset.

y

Number

y offset.

transaction

Opens new transaction.

The transaction will persist till a new one is opened. Transaction names must be unique.

Parameters:

NameTypeDescription

name

String

The transaction name.

type

Send a sequence of key strokes to an element (clears value before).

Refer to Key Codes for the list of supported raw keyboard key codes.

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
mob.type('id=TextArea', 'hello world\uE007');

Parameters:

NameTypeDescription

locator

String|Element

An element locator.

value

String

The value to type.

timeout

Number

optional Timeout in milliseconds. Default is 60 seconds.

unlockPattern

Unlocks a pattern lock

:

1 2 3
4 5 6
7 8 9
a b c

Parameters:

NameTypeDescription

locator

String|Element

Element locator for the pattern lock.

cols

Number

Number of columns in the pattern.

rows

Number

Number of rows in the pattern.

pattern

String

Pattern sequence. Pins are hexadecimal and case sensitive. See example.

timeout

Number

optional Timeout in milliseconds. Default is 60 seconds.

waitForExist

Wait for an element for the provided amount of milliseconds to exist in DOM.

The element is not necessary needs to be visible.

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
mob.waitForExist('id=Element');//Wait for an element for the provided amount of milliseconds to exist in DOM.

Parameters:

NameTypeDescription

locator

String|Element

Element locator.

timeout

Number

optional Time in milliseconds to wait for the element. Default is 60 seconds.

waitForInteractable

Waits for element to become interactable.

** Usage example:**

mob.init();//Opens browser session.
mob.waitForInteractable("id=UserName");//Waits for an element is clickable in DOM.

Parameters:

NameTypeDescription

locator

String|Element

An element locator.

timeout

Number

optional Timeout in milliseconds. Default is 60 seconds.

waitForVisible

Waits for element to become visible.

** Usage example:**

mob.init(caps);//Starts a mobile session and opens app from desired capabilities
mob.waitForVisible("id=Title", 45*1000);//Waits for an element to  be visible.

Parameters:

NameTypeDescription

locator

String|Element

Element locator.

timeout

Number

optional Time in milliseconds to wait for the element. Default is 60 seconds.

Last updated