Advertisement
Guest User

Untitled

a guest
Aug 27th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. public class MyTestIT extends AbstractSeleniumTest {
  2.  
  3. @FlowOnPage(step = 1, desc = "Description for this method")
  4. void flowSomePage(SomePage somePage) {
  5. ...
  6. }
  7.  
  8. @FlowOnPage(step = 2, desc = "Description for this method")
  9. void flowAnotherPage(AnotherPage anotherPage) {
  10. ...
  11. }
  12.  
  13. @FlowOnPage(step = 3, desc = "Description for this method")
  14. void flowYetAnotherPage(YetAnotherPage yetAnotherPage) {
  15. ...
  16. }
  17.  
  18. ...
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement