Cucumber does not read data from scenario outline

2019-07-23 03:57发布

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 following error -

You can implement missing steps with the snippets below:

@Given("^customer enters Elliot$")
public void customer_enters_Elliot() throws Throwable {
  // Express the Regexp above with the code you wish you had
  throw new PendingException();
}

@Given("^customer enters Florian$")
 public void customer_enters_Florian() throws Throwable {
  // Express the Regexp above with the code you wish you had
  throw new PendingException();
}

Did I implement test steps wrong?

2条回答
Juvenile、少年°
2楼-- · 2019-07-23 04:33

Just to add, The same error arise when in the runner class ,we put the wrong package of the step class

@CucumberOptions(glue = {"com.wrongpackage.step"})
public class TestRunner{

}

Step class should be present and the package should be correct.

查看更多
Animai°情兽
3楼-- · 2019-07-23 04:40

Instead of

 Scenario Outline: ...
  And customer enters <name>
  ...

Do this (Note the double quotes)

 Scenario Outline: ...
  And customer enters "<name>"
  ...
查看更多
登录 后发表回答