Skip to main content
Version: 2x

@qavajs/playwright

qavajs that works on top of playwright runner

Installation

npm init playwright
npm install @cucumber/cucumber @qavajs/playwright @qavajs/playwright-runner-adapter @qavajs/memory

Configuration

cucumber.ts

import Memory from './memory';
import App from './page_object';

export default {
paths: ['features/*.feature'],
require: [
'node_modules/@qavajs/playwright/index.js', // package steps
'step_definitions/*.ts' // custom step definitions
],
memory: new Memory(),
pageObject: new App()
}

playwright.config.ts

import { defineCucumber } from '@qavajs/playwright-runner-adapter';

export default defineConfig({
testDir: defineCucumber({
config: 'test-e2e/config.ts',
profile: 'smoke'
}),
...
});

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 type {string} chars to {string}

Type text to element sending fine-grained keyboard events

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

I click {string}

Click element

paramtypedescription
aliasstringelement to click
When I click 'Google Button'

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
I press 'Space' key 4 times

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 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 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 by {string}

Scroll by offset

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

I scroll to {string}

Scroll to element

paramtypedescription
aliasstringalias of element
When I scroll to 'Element'

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 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} {playwrightPoType}

Register selector as page object

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

I press {playwrightMouseButton} mouse button

Press mouse button

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

I release {playwrightMouseButton} 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 click {playwrightBrowserButton} button

Click browser button

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

I upload {string} file by clicking {string} step by

Provide file url to file chooser

paramtypedescription
filestringfile path or file handle
aliasstringelement that invokes file chooser
When I upload '/folder/file.txt' file by clicking 'Upload Button'

I set window size {string}

Resize browser viewport

paramtypedescription
viewportSizestringwidth 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'

I force click {string}

Force click element

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

Validation Steps


I expect {string} {playwrightConditionWait}

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

I expect number of elements in {string} collection {playwrightValidation} {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} {playwrightValidation} {string}

Verify that text of element satisfies condition

paramtypedescriptionexample
aliasstringelement to check conditionLabel, #1 of Search Results > Title
validationstringvalidation typeto be equal, to contain, not to match
expectedValuestringexpected result
Then I expect text of '#1 of Search Results' to be equal 'google'
Then I expect text of '#1 of Search Results' 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 '#1 of Textareas' to be equal '$firstResult'

I expect {string} property of {string} {playwrightValidation} {string}

Verify that property of element satisfies condition

paramtypedescriptionexample
propertystringproperty check conditionvalue, href, checked, innerHTML
aliasstringelement to check conditionLabel, #1 of Search Results > 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} {playwrightValidation} {string}

Verify that attribute of element satisfies condition

paramtypedescriptionexample
attributestringattribute check conditionhref, checked
aliasstringelement to check conditionLabel, #1 of Search Results > 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 {playwrightValidation} {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 {playwrightValidation} {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 {playwrightConditionWait}

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 {playwrightValidation} {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 equals to 'google'
Then I expect text of every element in 'Search Results' collection does not contain 'google'

I expect {string} attribute of every element in {string} collection {playwrightValidation} {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 {playwrightValidation} {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} {playwrightValidation} {string}

Verify that css property of element satisfies condition

paramtypedescriptionexample
propertystringproperty check conditioncolor, font-size
aliasstringelement to check conditionLabel, #1 of Search Results > 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 {playwrightValidation} {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, #1 of Search Results > Title
keystringkey to store value
When I save text of '#1 of Search Results' 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, #1 of Search Results > 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, #1 of Search Results > 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 {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, #1 of Search Results > 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 screenshot as {string}

Save page screenshot into memory

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

I save full page screenshot as {string}

Save full page screenshot into memory

paramtypedescription
keystringkey to store value
When I save full page 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 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'

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://playwright.dev/docs/api/class-route#route-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

Set cookie

paramtypedescription
cookiestringcookie name
valuestringvalue to set
When I set 'userID' cookie as 'user1'
When I set 'userID' cookie as '$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'

Network Intercept Steps


I create interception for {string} as {string}

Create interception for url or predicate function

paramtypedescription
predicatestringurl or predicate function to listen
keystringkey to save interception
When I create interception for '**/api/qavajs' as 'interception'
When I create interception for '$condition' as 'intercept' # where condition is function that wait for particular event https://playwright.dev/docs/network#network-events

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'
And I save '$interception' response as 'response' # response will be instance of Response object https://playwright.dev/docs/api/class-response
And I expect '$response.status()' to equal '200'

File Steps


I expect file matching {string} regexp appears in {string}

Verify that file matching regexp appears in directory

paramtypedescriptionexample
filestringfile name regex to waitf.+.txt
dirstringdirectory path to wait./yourFolder
When I expect file matching 'f.+\.txt' regexp appears in './test-e2e/folder'
When I expect file matching '$fileRegexp' regexp appears in '$folder'

I expect {string} file appears

Verify that file appears in provided location

paramtypedescriptionexample
filestringfile path to wait./yourFolder/file.txt
When I expect './test-e2e/folder/file.txt' file appears
When I expect '$filePath' file appears

I expect {string} text file content {validation} {string}

Verify that text file content satisfy validation

paramtypedescriptionexample
filestringfile path./yourFolder/file.txt
validationTypestringfile pathto be equal, to contain
expectedValuestringexpected valuetext, $value
When I expect './folder/file.txt' text file content to be equal 'file content'
When I expect '$filePath' text file content to contain '$content'

I save {string} file content as {string}

Save file content to memory as buffer

paramtypedescriptionexample
filestringfile path./yourFolder/file.jpeg
memoryKeystringmemory keyfileContent, value
When I save './folder/file.txt' file content as 'fileContent'
When I save '$filePath' file content as 'fileContent'

I save {string} text file content as {string}

Save file content to memory as text (utf-8)

paramtypedescriptionexample
filestringfile path./yourFolder/file.txt
memoryKeystringmemory keytextContent, value
When I save './folder/file.txt' text file content as 'fileContent'
When I save '$filePath' text file as 'fileContent'