testRTC uses the popular Nightwatch/Selenium scripting language. Here are several common commands that you are bound to find useful with testRTC. For a complete reference of the Nightwatch API reference, please refer to http://nightwatchjs.org/api. For a good overview of CSS selectors see here.
.click()
Simulates a click event on the given DOM element.
This is usually used to click on buttons or links on your web page.
Arguments
Name | Type | Description |
---|---|---|
selector | string | The CSS selector used to locate the element. |
Examples
client.click('#btn-login');
client.click('.btn-danger');
client.click('a[href="/dashboard"]');
client.click('xpath', '//*[@id="uncontained_main_content"]/div[2]/a');
.setValue()
Sends some text to an element. Can be used to set the value of a form element or to send a sequence of key strokes to an element. Any UTF-8 character may be specified.
Arguments:
Name | Type | Description |
---|---|---|
selector | string | The CSS/Xpath selector used to locate the element. |
value | string|array | The text to send to the element or key strokes. |
.pause()
Suspends the test for the given time in milliseconds. If the milliseconds argument is missing it will suspend the test indefinitely.
When you pause, the browser keeps running and any action taking place in the background continues – you can use the .pause() command for example to wait for the media in the call to run its course, giving it 30, 60 or any other number of seconds to play.
Arguments
Name | Type | Description |
---|---|---|
ms | number | The number of milliseconds to wait. |
.url()
Retrieve the URL of the current page or navigate to a new URL.
Arguments
Name | Type | Description |
---|---|---|
url | string | URL to navigate to. |