Skip to content

Instantly share code, notes, and snippets.

@jsdevel
Last active August 29, 2015 14:20
Show Gist options
  • Save jsdevel/a1b0bd45673077b997e4 to your computer and use it in GitHub Desktop.
Save jsdevel/a1b0bd45673077b997e4 to your computer and use it in GitHub Desktop.
package my.project;
import org.testng.annotations.Test;
import com.github.jsdevel.testng.selenium.AbstractSuite;
public class SampleSuiteITest extends AbstractSuite<MyPageFactory> {
@Test
public void we_should_be_able_to_view_the_home_page() {
getPageFactory().getHomePage();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment