Skip to content
This repository has been archived by the owner on Apr 6, 2020. It is now read-only.

v1.3.0

Compare
Choose a tag to compare
@mpetrovich mpetrovich released this 21 Aug 04:39
· 105 commits to master since this release

New functionality

  • Added data table support for element text equality and contains assertions (see example below)
  • Added support for asserting input values (see example below)
Scenario: Input values can be set using inline data tables
---
Given I navigate to "input actions"
And I set:
| text input       | Text value     |
| password input   | Password value |
When I click "submit button"
Then "text input" should be "Text value"
Then "password input" should be "Password value"
  • Added support for multi-selects
  • Add ability to force click (ie. ignoring actionability) with the force attribute

Bug fixes

  • New values replace existing values when setting text input values. Previously, the new value was appended to the existing value.