Skip to content

Instantly share code, notes, and snippets.

@vinogradoff
Last active August 29, 2015 14:22
Show Gist options
  • Save vinogradoff/8cb67db1379407e08383 to your computer and use it in GitHub Desktop.
Save vinogradoff/8cb67db1379407e08383 to your computer and use it in GitHub Desktop.
public class SimpleTest
{
SelenideElement page=$("#page"),
text=page.$("#text"),
img=page.$("#img");
@Before
public void setup(){
open("/");
}
@Test
public void simpleTest()
{
page.shouldBe(visible);
text.shouldBe(visible);
}
@Test
public void simpleTest2()
{
page.shouldBe(visible);
img.shouldBe(visible);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment