Guest User

Untitled

a guest
Jan 16th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. Scenario Outline: ABTA data
  2. Given a customer is on the "<respective>" page
  3. When the customer scrolls down to the bottom of the page
  4. Then the customer should be able to view the following text with ABTA logo
  5. |We're part of XXX Group - one of the world's leading|
  6.  
  7. Example:
  8. |Home Page|
  9.  
  10. Scenario Outline: ABTA data
  11. Given a customer is on the <respective>
  12. When the customer scrolls down to the bottom of the page
  13. Then the customer should be able to view the following text with ABTA logo
  14. <expected>
  15.  
  16. Examples:
  17. | respective | expected |
  18. | Home Page | We're part of XXX Group - one of the world's leading |
  19.  
  20. @Given("^a customer is on the (.*)$") {...}
  21.  
  22. @Then("^the customer should be able to view the following text with ABTA logo (.*)$") {...}
Add Comment
Please, Sign In to add comment