Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. package cz.cvut.fel.still.sqa.tests;
  2.  
  3. import cz.cvut.fel.still.sqa.page_objects.GoogleHomePage;
  4. import cz.cvut.fel.still.sqa.seleniumStarterPack.DriverBase;
  5. import org.junit.jupiter.api.Test;
  6.  
  7. import java.net.MalformedURLException;
  8.  
  9. public class GoogleHomePageTest extends DriverBase {
  10.  
  11. @Test
  12. public void testGoogle() throws MalformedURLException {
  13. GoogleHomePage ghp = GoogleHomePage.goTo("http://www.google.com", driver);
  14. ghp.enterSearchTerm("google");
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement