/
Feature names transformation into filenames rules
Feature names transformation into filenames rules
During features download, feature names are transformed into filenames. Below are the rules we use for transformation
FILENAME = FEATURE_NAME.replaceAll("[^a-zA-Z0-9]", " ").replaceAll("\s+", "-").trim().toLowerCase();
Replace all non alphanumeric characters with single space [^a-zA-Z0-9] → “ “
Replace multiple spaces with dash \s+ → “-“
Trim
Transform to lowercase
Example:
Feature name: Feature name transformation !#$%&'*+-/=?^_`{|}~
Transformed: feature-name-transformation
, multiple selections available,
Related content
Autocomplete and step reuse
Autocomplete and step reuse
Read with this
Create new Features
Create new Features
Read with this
Feature pages
Read with this
Set up AssertThat Test Plan Issue Type
Set up AssertThat Test Plan Issue Type
Read with this
Linking user stories and scenarios
Linking user stories and scenarios
Read with this
Test Automation Integration
Test Automation Integration
Read with this