Skip to main content
Version: 2x

@qavajs/steps-wdio

Step library to work with webdriverio using DSL page object

Installation

npm install @qavajs/steps-wdio

Configuration

wdio steps provide additional configuration properties

NameTypeDescriptionDefault
browserobjectobject describing wdio config{}
pageObjectobjectinstance of page object definitions (page object){}
import App from './page_object';
export default {
require: [
'node_modules/@qavajs/steps-wdio/index.js'
],
browser: {
timeout: {
present: 10000,
visible: 20000,
clickable: 15000,
page: 10000,
implicit: 0, //wdio implicit wait for element,
element: 2000 ,//timeout to element to be accesible,
value: 5000, // expect value timeout
valueInterval: 500 //expect value interval
},
capabilities: {
browserName: 'chrome'
}
},
pageObject: App
}

Screenshot

@qavajs/steps-wdio has build-in capability to take screenshot on particular event.

  • onFail
  • beforeStep
  • afterStep
export default {
browser: {
screenshot: ['onFail']
}
}

Snapshot

@qavajs/steps-wdio has build-in capability to take snapshot on particular event.

  • onFail
  • beforeStep
  • afterStep
export default {
browser: {
snapshot: ['onFail']
}
}

Reuse Session

reuseSession flag allows to share driver session between tests. Browser will not be closed automatically after test.

export default {
browser: {
reuseSession: true
}
}

Parameter Types

wdioLocator

Resolves to playwright locator

wdioCondition

condition of element to wait (can be negated with not)

  • to be visible
  • to be present
  • to be invisible
  • to be enabled
  • to be disabled
  • to be in viewport

wdioTimeout

optional timeout that can be passed to wait steps (timeout: x), where x timeout in milliseconds

wdioMouseButton

mouse button to interact

  • left
  • right
  • middle

Context variables

@qavajs/steps-wdio exposes following world variables

variabletypedescription
this.browserBrowserbrowser instance
this.driverBrowserbrowser instance (alias for browser)

Action Steps

I open {string} url

Opens provided url

paramtypedescription
urlstringurl to navigate
When I open 'https://google.com' url

I type {string} to {string}

Type text to element

paramtypedescription
aliasstringelement to type
valuestringvalue to type
When I type 'wikipedia' to 'Google Input'

I click {string}( ){wdioDisableActionabilityCheck}

Click element

paramtypedescription
aliasstringelement to click
disable wait(optional) booleandisable actionability wait
When I click 'Google Button'
When I click 'Google Button' (disable actionability wait)

I double click {string}( ){wdioDisableActionabilityCheck}

Double click element

paramtypedescription
aliasstringelement to click
disable wait(optional) booleandisable actionability wait
When I double click 'Input Field'
When I double click 'Input Field' (disable actionability wait)

I right click {string}( ){wdioDisableActionabilityCheck}

Right click element

paramtypedescription
aliasstringelement to click
disable wait(optional) booleandisable actionability wait
When I right click 'User Icon'
When I right click 'User Icon' (disable actionability wait)

I clear {string}

Clear element

paramtypedescription
aliasstringelement to clear
When I clear 'Search Input'

I click {string} text in {string} collection

Click on element with desired text in collection

paramtypedescription
expectedTextstringtext to click
aliasstringcollection
When I click 'google' text in 'Search Engines' collection

I switch to parent frame

Switch to parent frame

When I switch to parent frame

I switch to {int} frame

Switch to frame by index

paramtypedescription
indexnumberframe index to switch
When I switch to 2 frame

I switch to {string} frame

Switch to frame by page object alias

paramtypedescription
aliasstringIframe page object alias
When I switch to 'Checkout Iframe' frame

I switch to {int} window

Switch to window by index

paramtypedescription
indexnumberwindow index to switch
When I switch to 2 window

I switch to {string} window

Switch to window by matcher

paramtypedescription
matcherstringwindow matcher (url or title)
When I switch to 'google.com' window

I open new tab

Open new browser tab

When I open new tab

I close current tab

Close current browser tab

When I close current tab

I refresh page

Refresh page

When I refresh page

I press {string} key

Press key

paramtypedescription
keystringkey to press
When I press 'Enter' key

I press {string} key {int} time(s)

Press button given number of times

paramtypedescription
keystringkey to press
numbernumbernumber of times
I press 'Enter' key 5 times // for selenium
I press '$Enter' key 4 times // for devtools $Enter is memory value String.fromCharCode(13)

I hover over {string}

Hover over element

paramtypedescription
aliasstringelement to hover over
When I hover over 'Google Button'

I select {string} option from {string} dropdown

Select option with certain text from select element

paramtypedescription
optionstringoption to select
aliasstringalias of select
When I select '1900' option from 'Registration Form > Date Of Birth'
When I select '$dateOfBirth' option from 'Registration Form > Date Of Birth' dropdown

I select {int}(st|nd|rd|th) option from {string} dropdown

Select option with certain index from select element

paramtypedescription
optionIndexnumberindex of option to select
aliasstringalias of select
When I select 1 option from 'Registration Form > Date Of Birth' dropdown

I click {wdioBrowserButton} button

Click browser button

paramtypedescription
buttonstringbrowser button (back, forward)
When I click back button
When I click forward button

I upload {string} file to {string}

Provide file url to upload input

paramtypedescription
aliasstringelement to upload file
valuestringfile path
When I upload '/folder/file.txt' file to 'File Input'

I scroll to {string}

Scroll to element

paramtypedescription
aliasstringalias of element
When I scroll to 'Element'

I scroll by {string}

Scroll by offset

paramtypedescription
offsetstringoffset string in 'x, y' format
When I scroll by '0, 100'

I scroll by {string} in {string}

Scroll by offset in element

paramtypedescription
offsetstringoffset string in 'x, y' format
aliasstringalias of element
When I scroll by '0, 100' in 'Overflow Container'


I will wait for alert/dialog

Start listening for dialog

When I will wait for dialog

I accept alert

Accepts an alert

When I accept alert

I dismiss alert

Dismisses an alert

When I dismiss alert

I type {string} to alert

Type a text to alert

paramtypedescription
valuestringvalue to type
When I type 'Alerts are' to alert
When I type 'not a good practice' to alert
When I type 'nowadays' to alert

I drag and drop {string} in {string}

Drag&Drop one element to another

paramtypedescription
elementAliasstringelement to drop
targetAliasstringtarget
When I drag and drop 'Bishop' to 'E4'

I define {string} as {string} locator

Register selector as page object

paramtypedescription
selectorKeystringselector to register
aliasKeystringalias of element
When I define '#someId' as 'My Button' locator
And I click 'My Button'
When I define 'li.selected' as 'Selected Items' locator
And I expect number of element in 'Selected Items' collection to equal '3'

I press {wdioMouseButton} mouse button

Press mouse button

paramtypedescription
buttonstringbutton to press (left, right, middle)
When I press left mouse button

I release {wdioMouseButton} mouse button

Release mouse button

paramtypedescription
buttonstringbutton to release (left, right, middle)
When I release left mouse button

I move mouse to {string}

Move mouse to coordinates

paramtypedescription
coordinatesstringx, y coordinates to move
When I move mouse to '10, 15'

I scroll mouse wheel by {string}

Scroll mouse wheel by x, y offset

paramtypedescription
coordinatesstringx, y offset to scroll
When I scroll mouse wheel by '0, 15'

I hold down {string} key

Press and hold keyboard key

paramtypedescription
keystringkey to press
When I hold down 'Q' key

I release {string} key

Release keyboard key

paramtypedescription
keystringkey to release
When I release 'Q' key

I force click {string}

Force click element

paramtypedescription
aliasstringelement to click
When I force click 'Google Button'

Validation Steps


I expect {string} {wdioConditionWait}

Verify that element satisfies certain condition

paramtypedescriptionexample
aliasstringelement to check conditionSearch Input
conditionWaitstringfunction to wait conditionto be visible, not to be present
Then I expect 'Header' to be visible
Then I expect 'Loading' not to be present
Then I expect 'Search Bar > Submit Button' to be clickable

I expect number of elements in {string} collection {validation} {string}

Verify that number of element in collection satisfies condition

paramtypedescriptionexample
collectionstringcollection to check conditionSearch Results
validationstringfunction to verify conditionto be equal, to be above, to be below
expectedValuestringexpected value
Then I expect number of elements in 'Search Results' collection to be equal '50'
Then I expect number of elements in 'Search Results' collection to be above '49'
Then I expect number of elements in 'Search Results' collection to be below '51'

I expect text of {string} {validation} {string}

Verify that text of element satisfies condition

paramtypedescriptionexample
aliasstringelement to check conditionLabel, Search Result (1) > Title
validationstringvalidation typeto be equal, to contain, not to match
expectedValuestringexpected result
Then I expect text of 'Search Result (1)' to be equal 'google'
Then I expect text of 'Search Result (1)' to be equal '$firstResult'

I expect value of {string} {playwrightValidation} {string}

Verify that value of element satisfies condition

paramtypedescriptionexample
aliasstringelement to check conditionInput, Text Area
validationstringvalidation typeto be equal, to contain, not to match
expectedValuestringexpected result
Then I expect value of 'Input' to be equal 'google'
Then I expect value of 'Textarea (1)' to be equal '$firstResult'

I expect {string} property of {string} {validation} {string}

Verify that property of element satisfies condition

paramtypedescriptionexample
propertystringproperty check conditionvalue, href, checked, innerHTML
aliasstringelement to check conditionLabel, Search Result (1) > Title
validationstringvalidation typeto be equal, to contain, not to match
expectedValuestringexpected result
Then I expect 'value' property of 'Search Input' to be equal 'text'
Then I expect 'innerHTML' property of 'Label' to contain '<b>'
Then I expect 'value' property of 'Search Input' to be equal '$inputText'

I expect {string} attribute of {string} {validation} {string}

Verify that attribute of element satisfies condition

paramtypedescriptionexample
attributestringattribute check conditionhref, checked
aliasstringelement to check conditionLabel, Search Result (1) > Title
validationstringvalidation typeto be equal, to contain, not to match
expectedValuestringexpected result
Then I expect 'href' attribute of 'Home Link' to contain '/home'
Then I expect 'href' attribute of 'Home Link' to be equal '$url'

I expect current url {validation} {string}

Verify that current url satisfies condition

paramtypedescriptionexample
validationstringvalidation typeto be equal, to contain, not to match
expectedValuestringexpected result
Then I expect current url contains 'wikipedia'
Then I expect current url equals 'https://wikipedia.org'

I expect page title {validation} {string}

Verify that page title satisfies condition

paramtypedescriptionexample
validationstringvalidation typeto be equal, to contain, not to match
expectedValuestringexpected result
Then I expect page title equals 'Wikipedia'

I expect every element in {string} collection {wdioConditionWait}

Verify that all elements in collection satisfy condition

paramtypedescriptionexample
aliasstringalias of collectionSearch Results
conditionstringcondition to waitto be visible, to be present
Then I expect every element in 'Header > Links' collection to be visible
Then I expect every element in 'Loading Bars' collection not to be present

I expect text of every element in {string} collection {validation} {string}

Verify that all texts in collection satisfy condition

Note: step passes in case of empty collection

paramtypedescriptionexample
aliasstringalias of collectionSearch Results
validationstringvalidation typeto be equal, to contain, not to match
expectedValuestringexpected result
Then I expect text of every element in 'Search Results' collection to be equal 'google'
Then I expect text of every element in 'Search Results' collection does not contain 'yandex'

I expect {string} attribute of every element in {string} collection {validation} {string}

Verify that all particular attributes in collection satisfy condition

Note: step passes in case of empty collection

paramtypedescriptionexample
attributestringattribute to gethref, checked
aliasstringalias of collectionSearch Results
validationstringvalidation typeto be equal, to contain, not to match
expectedValuestringexpected result
Then I expect 'href' attribute of every element in 'Search Results' collection to contain 'google'

I expect {string} property of every element in {string} collection {validation} {string}

Verify that all particular properties in collection satisfy condition

Note: step passes in case of empty collection

paramtypedescriptionexample
attributestringattribute to gethref, checked
aliasstringalias of collectionSearch Results
validationstringvalidation typeto be equal, to contain, not to match
expectedValuestringexpected result
Then I expect 'href' property of every element in 'Search Results' collection to contain 'google'

I expect {string} css property of {string} {validation} {string}

Verify that css property of element satisfies condition

paramtypedescriptionexample
propertystringproperty check conditioncolor, font-size
aliasstringelement to check conditionLabel, Search Result (1) > Title
validationstringvalidation typeto be equal, to contain, not to match
expectedValuestringexpected result
Then I expect 'color' css property of 'Search Input' to be equal 'rgb(42, 42, 42)'
Then I expect 'font-family' css property of 'Label' to contain 'Fira'

I expect text of alert {validation} {string}

Verify that text of an alert meets expectation

paramtypedescriptionexample
validationstringfunction to verify conditionto be equal, to be above, to be below
expectedValuestringexpected result
Then I expect text of alert does not contain 'coffee'
Then I expect text of alert does not contain 'hello world'
Then I expect text of alert does not contain 'Are you sure you want to leave this page?'

Memory Steps


I save text of {string} as {string}

Save text of element to memory

paramtypedescriptionexample
aliasstringelement to get valueLabel, Search Result (1) > Title
keystringkey to store value
When I save text of 'Search Result (1)' as 'firstSearchResult'

I save {string} property of {string} as {string}

Save property of element to memory

paramtypedescriptionexample
propertystringproperty to storevalue, href, checked, innerHTML
aliasstringelement to get valueLabel, Search Result (1) > Title
keystringkey to store value
When I save 'checked' property of 'Checkbox' as 'checked'
When I save '$prop' property of 'Checkbox' as 'checked'

I save {string} attribute of {string} as {string}

Save attribute of element to memory

paramtypedescriptionexample
attributestringattribute to storehref, checked
aliasstringelement to get valueLabel, Search Result (1) > Title
keystringkey to store value
When I save 'href' attribute of 'Link' as 'linkHref'
When I save '$prop' attribute of 'Link' as 'linkHref'

I save number of elements in {string} collection as {string}

Save number of elements in collection to memory

paramtypedescriptionexample
collectionstringcollection to get valueSearch Results
keystringkey to store value
When I save number of elements in 'Search Results' collection as 'numberOfSearchResults'

I save text of every element of {string} collection as {string}

Save array of texts of collection to memory

paramtypedescriptionexample
aliasstringcollection to get valueSearch Results
keystringkey to store value
When I save text of every element of 'Search Results' collection as 'searchResults'

I save {string} attribute of every element of {string} collection as {string}

Save array of attributes of collection to memory

paramtypedescriptionexample
attributestringattribute to get valuechecked, href
aliasstringcollection to get valueSearch Results
keystringkey to store value
When I save 'checked' attribute of every element of 'Search > Checkboxes' collection as 'checkboxes'

I save {string} property of every element of {string} collection as {string}

Save array of properties of collection to memory

paramtypedescriptionexample
propertystringproperty to get valuehref
aliasstringcollection to get valueSearch Results
keystringkey to store value
When I save 'href' property of every element of 'Search Results' collection as 'hrefs'

I save current url as {string}

Save current url to memory

paramtypedescriptionexample
keystringkey to store value
When I save current url as 'currentUrl'

I save page title as {string}

Save current page title to memory

paramtypedescriptionexample
keystringkey to store value
When I save page title as 'currentTitle'

I save screenshot as {string}

Save page screenshot into memory

paramtypedescription
keystringkey to store value
When I save screenshot as 'screenshot'

I save screenshot of {string} as {string}

Save element screenshot into memory

paramtypedescription
keystringkey to store value
aliasstringelement to get screenshot
When I save screenshot of 'Element' as 'screenshot'

I save {string} css property of {string} as {string}

Save css property of element to memory

paramtypedescriptionexample
propertystringproperty to storebackground-color, font-size
aliasstringelement to get valueLabel, Search Result (1) > Title
keystringkey to store value
When I save 'color' css property of 'Checkbox' as 'checkboxColor'
When I save '$propertyName' property of 'Checkbox' as 'checkboxColor'

I save bounding rect of {string} as {string}

Save bounding client rect to memory https://developer.mozilla.org/en-US/docs/Web/API/DOMRect

paramtypedescription
aliasstringelement to get bounding rect
keystringkey to store value
When I save bounding rect of 'Node' as 'boundingRect'
Then I expect '$boundingRect.width' to equal '42'

Wait Steps


I wait {int} ms

Wait for a specified number of milliseconds

paramtypedescription
msnumbermilliseconds
When I wait 1000 ms

I wait for alert

Wait for alert to pop up

When I wait for alert

I refresh page until {string} {wdioConditionWait}( ){wdioTimeout}

Refresh page until element matches condition

paramtypedescription
aliasstringelement alias
conditionstringcondition to wait
timeoutnumber (optional)timeout in milliseconds
When I refresh page until 'Internal Server Error Box' to be visible
When I refresh page until 'Submit Button' to be enabled
When I refresh page until 'Place Order Button' to be clickable (timeout: 3000)

I refresh page until text of {string} {validation} {string}( ){wdioTimeout}

Refresh page until element text matches condition

paramtypedescription
aliasstringelement alias
conditionstringcondition to wait
expectedstringexpected value
timeoutnumber (optional)timeout in milliseconds
When I refresh page until text of 'Order Status' to be equal 'Processing'
When I refresh page until text of 'Currency' not contain '$'
When I refresh page until text of 'My Salary' to match '/5\d{3,}/' (timeout: 3000)


Set cookie

paramtypedescription
cookiestringcookie name
valuestringvalue to set
When I set 'userID' cookie 'user1'
When I set 'userID' cookie '$userIdCookie'

Save cookie value to memory

paramtypedescription
cookiestringcookie name
keystringmemory key
When I save value of 'auth' cookie as 'authCookie'

Local/Session Storage Steps


I set {string} {word} storage value as {string}

Set value of local/session storage

paramtypedescription
storageKeystringlocal/session storage key to set value
storageTypewordstorage type (local or session)
valuestringvalue to set
When I set 'username' local storage value as 'user1'
When I set '$sessionStorageKey' session storage value as '$sessionStorageValue'

I save value of {string} {word} storage as {string}

Set value of local/session storage

paramtypedescription
storageKeystringlocal/session storage key to set value
storageTypewordstorage type (local or session)
keystringmemory key
When I save value of 'username' local storage as 'localStorageValue'
When I save value of '$sessionStorageKey' session storage value as 'sessionStorageValue'

Mobile Steps


I tap {string}

Support: Android, iOS

Tap element

paramtypedescription
aliasstringelement to tap
When I tap 'Google Button'

I shake device

Support: Android, iOS

Shake device

When I shake device

I perform touch action: [DataTable]

Support: Android, iOS

Perform touch action

  • press and move to accept x and y percentages of current viewport
  • wait accepts milliseconds
  • release doesn't accept any params
paramtypedescription
actionsTableDataTabledata table of actions and params (see https://webdriver.io/docs/api/appium#touchperform)
When I perform touch action:
| press | 90, 80 |
| wait | 200 |
| moveTo | 10, 80 |
| release | |

I perform touch action {string}

Support: Android, iOS

Perform touch action

paramtypedescription
actionsAliasstringmemory alias that resolves into array of action objects (see https://webdriver.io/docs/api/appium#touchperform)
When I perform touch action '$actions'

Execute Steps


I execute {string} function

Execute client function

paramtypedescription
functionKeystringfunction memory key to execute
When I execute '$fn' function # fn is function reference
When I execute 'window.scrollBy(0, 100)' function

I execute {string} function and save result as {string}

Execute client function and save result into memory

paramtypedescription
functionKeystringfunction memory key to execute
memoryKeystringmemory key to save value
When I execute '$fn' function and save result as 'result' # fn is function reference
When I execute 'window.scrollY' function and save result as 'scroll'

I execute {string} function on {string}

Execute client function on certain element

paramtypedescription
functionKeystringfunction memory key to execute
aliasstringtarget element alias
When I execute '$fn' function on 'Component > Element' # fn is function reference
When I execute 'arguments[0].scrollIntoView()' function on 'Component > Element'

I execute {string} function on {string} and save result as {string}

Execute client function on certain element

paramtypedescription
functionKeystringfunction memory key to execute
memoryKeystringmemory key to save value
aliasstringtarget element alias
When I execute '$fn' function on 'Component > Element' and save result as 'innerText' # fn is function reference
When I execute 'arguments[0].innerText' function on 'Component > Element' and save result as 'innerText'

Mock Steps


I create mock for {string} as {string}

Create mock instance

paramtypedescription
urlTemplatestringminimatch url template to mock
memoryKeystringmemory key to store mock instance
When I create mock for '/yourservice/**' as 'mock1'
When I create mock for '$mockUrlTemplate' as 'mock1'

I set {string} mock to respond {string} with: [multiline]

Add mocking rule to respond with desired status code and payload

paramtypedescription
mockKeystringmemory key to get mock instance
statusCodestringstatus code
bodystringresponse body
When I create mock for '/yourservice/**' as 'myServiceMock'
And I set '$myServiceMock' mock to respond '200' with:
"""
{
"status": "success"
}
"""

I set {string} mock to respond {string} with {string}

Add mocking rule to respond with desired status code and payload

paramtypedescription
mockKeystringmemory key to get mock instance
statusCodestringstatus code
bodystringresponse body
When I create mock for '/yourservice/**' as 'myServiceMock'
And I set '$myServiceMock' mock to respond '200' with '$response'

I set {string} mock to abort with {string} reason

Add mocking rule to abort request with certain reason

paramtypedescription
mockKeystringmemory key to get mock instance
reasonstringreason string see https://webdriver.io/docs/api/mock/abort
When I create mock for '/yourservice/**' as 'myServiceMock'
And I set '$myServiceMock' mock to abort with 'Failed' reason

I restore {string} mock

Restore mock

paramtypedescription
mockKeystringmemory key to get mock instance
When I restore '$myServiceMock'

I restore all mocks

Restore all mocks

When I restore all mocks

Network Intercept Steps


I create interception for {string} as {string}

Create interception for url

paramtypedescription
predicatestringurl or predicate function to listen
keystringkey to save interception
When I create interception for '**/api/qavajs' as 'interception'

I wait for {string} response

Wait for interception event

paramtypedescription
interceptionstringmemory key of interception event
When I create interception for '**/api/qavajs' as 'interception'
And I wait for '$interception' response

I save {string} response as {string}

Wait for interception event and save response to memory

paramtypedescription
interceptionstringmemory key of interception event
keystringkey to save interception response
When I create interception for '**/api/qavajs' as 'interception'
When I save '$interception' response as 'response' # response will be instance of Response object
And I expect '$response.statusCode' to equal '200'

Multi-browser Steps


I open new browser as {string}

Open new browser

paramtypedescription
browserNamestringbrowser name
When I open new browser as 'browser2'

I switch to {string} browser

Switch to other browser by name

paramtypedescription
browserNamestringbrowser name
When I open new browser as 'browser2'
And I switch to 'browser2' browser
And I switch to 'default' browser

I close {string} browser

Close browser

paramtypedescription
browserNamestringbrowser name
When I close to 'browser2' browser

I set window size {string}

Resize browser window

paramtypedescription
windowSizestringwidth and height in pixels separated by comma
When I set window size '1440,900'

I click {string} coordinates in {string}

Click a certain coordinate of an element

paramtypedescription
coordinatesstringcomma separated x and y coordinates
aliasstringelement to click
When I click '0,20' coordinates in 'Google Button'