@jambit/wdio-cucumber-selected-steps
v2.4.0
Published
Cucumber step definition basics for easy import
Downloads
8
Readme
Description
This library ships a set of common steps for writing cucumber feature files for use with webdriver.io.
It is based on the official boilerplate, but has been rewritten to bring several improvements:
- Cleaned up sentences
- Proper english
- Each sentence can be used correctly in any sentence type (
Given
,When
,Then
andAnd
).
- No need to write CSS and XPath selectors in
.feature
files.- Files are written in separate selector files instead: json, yaml and javascript modules (default export) are supported.
- This makes sentences more readable for non-developers.
- This allows to change selectors at one place rather than in multiple
.feature
files when the selectors change. - You can even combine multiple selector names in the sentences to select child elements.
- for example:
'User Table -> User Row X -> Role Column
(where each of the parts separated by " -> " are individual selectors)
- for example:
- Values extracted from the regular expression are passed through converters before they are passed to the callback.
- For example to convert text to boolean, integer or floating point values.
string
,int
,float
,bool
,selector
,element
andelements
are supported out of the box.- You can write your own.
- Support logic for built-in steps can be reused in custom step definitions.
- For example if you write a login step definition it can use the
setValue()
andclick()
support helpers.
How to Use
Requirements
Webdriver.io V7 with Cucumber Framework.
Setup
Take a look at the sample project
The most important steps are:
- Install the project:
npm install @jambit/wdio-cucumber-selected-steps
- Install babel (
@babel/core
,@babel/preset-env
and@babel/register
) - Adjust the wdio.conf.js file (see below)
wdio.conf.js Adjustments
// This is needed, since the project uses ES6 modules.
require("@babel/register")({
// This will override `node_modules` ignoring - you can alternatively pass
// an array of strings to be explicitly matched or a regex / glob
ignore: [
// Gherkin, however, is not compatible with babel, so ignore it.
'node_modules/gherkin/**/*.js'
],
});
// At the top:
const setupSelectors = require('@jambit/wdio-cucumber-selected-steps').setupSelectors;
exports.config = {
//...
cucumberOpts: {
//...
require: [
// Add the selected steps to cucumber:
'./node_modules/@jambit/wdio-cucumber-selected-steps/lib/steps/*.js',
// ...
],
//...
},
// ...
before: function (capabilities, specs) {
// Setup the path to your selectors:
setupSelectors([
'./src/selectors/*.js'
]);
// ...
},
wdio.conf.js Adjustments for Selector Replacements
In some cases, you want to set up some variables in the config to be used in the test. This can be useful when you need to create data on a remote server during tests and later access them. If you need those variables to be in the selector files, you can now easily do this!
const { setupSelectors, setupTextMethod } = require('@jambit/wdio-cucumber-selected-steps');
exports.config = {
// ...
before: function (capabilities, specs) {
// Setup the path to your selectors:
setupSelectors(...);
setSelectorVariable("TEST_ID", Date.now().toString());
// ...
},
In your selector files, you can now use {{TEST_ID}}
inside of your selector files:
---
My Selector: ".data-1-{{TEST_ID}}"
My Selector Nested:
foo: ".data-2-{{TEST_ID}}"
bar: ".data-3-{{TEST_ID}}"
Any value, which is a text (even in a nested object or array) will be replaced with the defined replacement. You can even specify a function to generate a value:
setSelectorVariable("RANDOM", () => Math.random());
This function will be called freshly for every text value to be replaced.
wdio.conf.js Adjustments for Text Method
Additionally, you can configure the text method used. By default, wdio uses element.getText()
, which will return the transformed text. I.e. if you set your css to upper-case some text, you will get the upper-case version of the text. If you want to get the non-transformed version, you would have to test the attribute textContent
. To make this more convenient, you can configure the default behavior.
const { setupSelectors, setupTextMethod } = require('@jambit/wdio-cucumber-selected-steps');
exports.config = {
// ...
before: function (capabilities, specs) {
// Setup the path to your selectors:
setupSelectors(...);
setupTextMethod('textContent');
// ...
},
If you want to use this logic in your custom steps, use our getText()
helper.
Creating Selector Files
In src/selectors
(of course, you can change the path), create .js
files that export a map as default like this:
export default {
'Header': '#header',
'Header - Username': '#header .username',
'Edit User Dialog - Title': '//h3[@class=\'.dialog__title\' and text()=\'Edit User\']',
};
You can write these files as .json
or .yaml
as well. Writing it in javascript has the advantage, that you can use functions as selectors as well.
The key can be used in .feature
files wherever paramType.selector/element/elements
is used:
paramType.selector
will pass this value throughgetSelector()
, which will return the value from the selector files.paramType.element
will pass this value throughelementQuery()
, which will return a function, that returns theWebdriverIO.Element
.paramType.elements
will pass this value throughelementsQuery()
, which will return a function, that returnsWebdriverIO.Element[]
.paramType.element
andparamType.elements
also overridetoString()
, so it can easily be used to print out the selector key (i.e. what is written in the.feature
files ).
Visual Studio Code Support:
If you use the Cucumber (Gherkin) Full Support extension, you can set it up like this:
{
"cucumberautocomplete.steps": [
"node_modules/@jambit/wdio-cucumber-selected-steps/lib/steps/*.js",
"cucumberautocomplete.syncfeatures": "src/features/*.feature",
"src/steps/*.js"
],
"cucumberautocomplete.gherkinDefinitionPart": "(Given|When|Then|defineTypedStep)\\("
}
Using Steps
Assuming you know Gherkin syntax, you should be ready to go. Here is an example:
Given I open the url "/"
And the element "Header" exists
And the element "Header - Username" matches the text "Zaphod Beeblebrox"
When I click on the element "Header - Username"
And I wait for the element "Edit User Dialog - Title" to exist
Then ...
List of Included Steps
All of these steps can be used with Given
, When
, Then
and And
.
alert
(an alertbox|a confirmbox|a prompt) (appears|does not appear)
-> Check if a modal was opened(an alertbox|a confirmbox|a prompt) (matches|does not match) the text "([^"]*)"
-> Check the text of a modalI (accept|dismiss) the (alertbox|confirmbox|prompt)
-> Handle an alertbox/confirmbox/promptI enter "([^"]*)" into the prompt
-> Enter text into the current prompt
cookies
the cookie "([^"]+)" (has|does not have) the value "([^"]*)"
-> Check the content of a cookie against a given valuethe cookie "([^"]+)" (exists|does not exist)
-> Check if a cookie with the given name existsI set the cookie "([^"]+)" to "([^"]*)"
-> Set a given cookie to a given value. When the cookies does not exist it will be createdI delete the cookie "([^"]+)"
-> Delete a cookie
delay
I pause for (\d+)ms
-> Pause execution for a given number of millisecondsI wait(?: (\d+)ms)? for the (?:link|button|element|checkbox|radio) "([^"]+)"(?: to( not)? (exist|be checked|be enabled|be selected|be displayed|have a text|have a value|match the text|match the value|contain the text)(?: "([^"]+)")?)?
-> Wait for the given element to be checked, enabled, selected, displayed, match/contain a text, match a value or to existI wait(?: (\d+)ms)? for the (url|path) to( not)? (contain|match) "([^"]+)"
-> Wait for the url or path to contain or match the specified value
elements
the element "([^"]+)" is( not)? displayed
-> Check if the given element is (not) displayedthe element "([^"]+)" is( not)? enabled
-> Check if the given element is enabledthe (?:element|checkbox|radio) "([^"]+)" is( not)? selected
-> Check the selected state of the given elementthe element "([^"]+)" (exists|does not exist)(?: exactly (\d+) times)?
-> Check if the given element exists in the DOM one or more timesthe element "([^"]+)" (has|does not have) the same text as the element "([^"]+)"
-> Compare the contents of two elements with each otherthe (button|element) "([^"]+)" (matches|does not match) the text "([^"]*)"
-> Check if the given elements text is the same as the given textthe (button|element) "([^"]+)" (contains|does not contain) the text "([^"]+)"
-> Check if the given elements contains textthe (button|element) "([^"]+)" is( not)? empty
-> Check if the given element is emptythe( css)? attribute "([^"]+)" of the element "([^"]+)" is( not)? "([^"]*)"
-> Check the given property of the given elementthe (width|height) of the element "([^"]+)" is( not)? (\d+)px
-> Check the dimensions of the given elementthe element "([^"]+)" is( not)? positioned at (\d+)px on the (x|y) axis
-> Check the offset of the given elementthe element "([^"]+)" is( not)? within the viewport
-> Check if the given element is displayed inside the current viewportthe element "([^"]+)" (has|does not have) the class "([^"]+)"
-> Check if the given element has the given classthe element "([^"]+)" is( not)? focused
-> Check if the given element has the focusI (click|double-click) on the (?:link|button|element|checkbox|radio) "([^"]+)"
-> Perform a click action on the given elementI append "([^"]+)" to the inputfield "([^"]+)"
-> Add a value to the current element valueI set the inputfield "([^"]+)" to "([^"]+)"
-> Set the value of the given input field to a new valueI clear the inputfield "([^"]+)"
-> Clear the value of a given input fieldI drag the element "([^"]+)" to the element "([^"]+)"
-> Drag an element to a given destinationI press "([^"]+)"
-> Perform a key pressI scroll to the element "([^"]+)"
-> Scroll the page to the given elementI select the option with the (name|value|text) "([^"]+)" for the element "([^"]+)"
-> Select an option of a select elementI select the (\d+)(?:st|nd|rd|th) option for the element "([^"]+)"
-> Select an option from a select element by it's indexI move to the element "([^"]+)"(?: with an offset of (\d+),(\d+))?
-> Move to the given element with an optional offset on an X and Y position
windows
I open the (url|path) "([^"]*)"
-> Open the given URLthe title (matches|does not match) the text "([^"]*)"
-> Check the title of the current browser windowthe title (contains|does not contain) the text "([^"]+)"
-> Check the title of the current browser window contains expected text/titlethe (url|path) (matches|does not match) "([^"]*)"
-> Check if the current URL or path matches the given valuethe (url|path) (contains|does not contain) "([^"]+)"
-> Check if the given string is in the URL pathI set the screen size to (\d+) by (\d+)px
-> Resize the browser windowI close all but the first (?:window|tab)
-> Close all tabs but the first one.a new (?:window|tab) (appears|does not appear)
-> Check if a new window or tab is openedthe (url|path) "([^"]*)" is opened in a new (?:tab|window)
-> Check if the given URL or path was opened in a new windowI close the last opened (?:window|tab)
-> Close the last opened windowI focus the last opened (?:window|tab)
-> Focus the last opened window
Writing Your Own Steps
Support Helpers
The step definitions above implement their logic in methods found in the src/support folder. These methods can be reused, if you want to write your own step definitions. Have a look at the docs file for a list of methods.
These methods can be imported like this:
import { selectOption } from '@jambit/wdio-cucumber-selected-steps/lib/support';
Writing Your Own Steps
Say, you want to do a bit more than just one of the elemental things above. Just write your own step definition to re-use that logic.
Example login step (ideally split into separate files, but here in one for simplicity):
import { defineTypedStep, setValue, paramType, click } from '@jambit/wdio-cucumber-selected-steps/lib/support';
// ...
const loginStep = (user) => {
const credentials = CREDENTIALS[user];
if (!credentials) {
throw new Error("User " + user + " is not implemented!");
}
setValue(getSelector('Login Page - Login Name Input'), credentials.user);
setValue(getSelector('Login Page - Login Password Input'), credentials.password);
click('click', getSelector('Login Page - Submit'));
};
defineTypedStep(
/^I log in as "(user|admin)"$/,
[
paramType.string,
],
loginStep,
);
defineTypedStep
is a special method that takes these parameters:
{RegExp | string}
pattern The regular expression used to match the step{ParamType[]}
types The param types used to map the expression matches to actual values{StepDefinitionOptions}
options The options to use (optional){StepDefinitionCode}
code The function to execute
Apart from the types array, this is the same as in normal cucumber. The types array is used to perform a transformation of the strings that the regex returns.
These are the built-in ParamTypes. Use <property>.optional
instead if the parameter is optional (for example paramType.string.optional
).
paramType.string
The parameter is expected to be astring
. No conversion done.paramType.int
The parameter is expected to be aninteger
.parseInt()
is applied.paramType.float
The parameter is expected to be afloat
.parseFloat()
is applied.paramType.bool
The parameter is expected to be aboolean
value.!!
is applied.paramType.selector
The parameter is expected to be a selector key.getSelector()
is applied.paramType.element
The parameter is expected to be a selector key.elementQuery()
is applied.paramType.elements
The parameter is expected to be a selector key.elementsQuery()
is applied.
If your boolean value is one of two strings, for example (contains|does not contain)
, then you can specify this like this:
// Either:
paramType.bool.setTrue('does not contain'),
// Or:
paramType.bool.setFalse('contains'),
If you want to avoid always adding the same prefix/suffix for a paramType.selector/element(s)
, you can use the .format()
option:
paramType.selector.format("Prefix{{VALUE}}Suffix"),
In this case, if your value received from the .feature file was "FooBar", then it would become "PrefixFooBarSuffix" before being evaluated.
You can even write your own paramTypes. Just have a look at the built-in ones: src/support/paramType.ts.
For samples of how steps can look, just take a look at the src/steps folder of this library. The logic implementation resides in the src/support folder.
Documenting Your Own Steps
The documentation for the steps included in this project are automatically generated using the package @jambit/wdio-cucumber-selected-steps-stepdoc
.
This tool was tailored to be used with this project, but you might be able to use it for your tests as well.
License
Licensed under MIT