Cucumber does not read data from scenario outline
问题 I have following scenario outline Background: Given customer is in hot or not page Scenario Outline: Hot article And customer enters <name> And submits And customer clicks thumbs up Then ensure the TBD Examples: | name | | Elliot | | Florian | and following step implementation - @And("customer enters <name>") public void customer_enters_name(String name) throws Throwable { // Express the Regexp above with the code you wish you had Thread.sleep(10000); } But when I execute test then I get