Advertisement
Guest User

Untitled

a guest
Jul 7th, 2015
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. public class SimpleTest
  2. {
  3. SelenideElement firstListElement=$(".list");
  4. SelenideElement firstListElement2=$$(".list").get(0);
  5.  
  6. @Before
  7. public void setup(){
  8. browser="chrome";
  9. open("/");
  10. }
  11. @Test
  12. public void simpleTest()
  13. {
  14. firstListElement.shouldBe(visible);
  15. firstListElement2.shouldBe(visible);
  16. }
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement