I guess there are several people out there, that use the Gherkin language to define their test cases. (https://github.com/cucumber/cucumber/wiki)
My combination of Gherkin and TestRail looks like this (I use seperated steps without expected results):
Title = Scenario: Register
Step 1 = Given I am on the page "example.de/register"
Step 2 = When I fill out the register form:
| forename | Peter |
| surname | Hackt |
| email | peter.hackt@example.de |
| password | peterhackt123 |
Step 3 = And I save
Step 4 = Then the page reloads
Step 5 = And I see the message "You have registered successfully"
For better manual test execution I would like to have syntax highlighting and formatting for the "tables" in pipes like in an editor.
Here is an example how it could look by opening the details page of a test case:
Title = Scenario: Register
Step 1 = Given I am on the page "example.de/register"
Step 2 = When I fill out the register form:
| forename | Peter |
| surname | Hackt |
| email | peter.hackt@example.de |
| password | peterhackt123 |
Step 3 = And I save
Step 4 = Then the page reloads
Step 5 = And I see the message "You have registered successfully"
Could we get something like this in a future update, or did someone already wrote a script for something like this?