You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allow properties to be written in the document's language. Examples:
Then I see {Age|minimum value} # english
Then I see {Age|valor mínimo} # portuguese
Support properties from other Features
Allow to reference UI Elements from other Features involved in a Variant. Example:
# login.feature
Feature: Login
Scenario: Successful login
Variant: Login by entering credentials
Given that I am on the [Login Screen]
When I type {Username}
and I type {Password}
and I click on {OK}
Then I have ~user logged in~
...
# logout.feature
import "login.feature"
Feature: Logout
Scenario: Successful logout
Variant: Logout by selecting the menu bar option
Given that I have ~user logged in~
and I see {Login:Username|value}
When I click on {Logout}
Then I have ~user logged out~
...
When the sentence and I see {Login:Username|value} is converted to a Test Case sentence, it will receive the corresponding value of Login's Username.
Future plans
Recognize UI Element Properties in Otherwise sentences
The text was updated successfully, but these errors were encountered:
Example:
Then I see that {Age} is {Age|minvalue}
The
|
operator separates a UI Element from one of its properties.Whether the property
id
is#age
and the propertyminvalue
is21
, the above sentence will be converted to:Language-independent property names
Allow the following properties:
id
type
datatype
value
🠖 Implemented in v1.2.0minlength
maxlength
minvalue
maxvalue
format
required
Example:
Then I see {Age|value}
Language-specific property names
Allow properties to be written in the document's language. Examples:
Support properties from other Features
Allow to reference UI Elements from other Features involved in a Variant. Example:
When the sentence
and I see {Login:Username|value}
is converted to a Test Case sentence, it will receive the corresponding value of Login's Username.Future plans
The text was updated successfully, but these errors were encountered: