Question:
I write tests using Cucumber, if instead of <koef>
I manually specify parameters, then the test passes correctly, but as soon as I try to use the table the test stops compiling with an error
Error parsing feature file koef_from_main.feature
Сценарий: Сценарий один
Допустим я на главной странице
Когда я вхожу с правами администратора
И я выбираю "<koef>" коэффициентов
Тогда "<koef>" коэффициента появляются в таблице
И "<koef>" коэффициентов правильно сохраняются
Примеры:
| koef |
| 2 |
| 3 |
| 4 |
Answer:
Maybe you need this option?
Scenario Outline: text
Given text '<test>' text
When text
Then text
Examples:
|test|
|1|
|2|
|3|