Skip to content

Commit

Permalink
update the base url
Browse files Browse the repository at this point in the history
  • Loading branch information
rvancea committed Mar 4, 2020
1 parent 8c228fd commit e80a997
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/test/java/GoogleTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ public class GoogleTest extends BaseTest {

@Test
public void assertTitle(){
driver.get(baseUrl);
driver.get(BASE_URL);

String currentTitle = driver.getTitle();
String expectedTitle = "Google";
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/ZaleniumTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public class ZaleniumTest extends BaseTest {

@Test
public void assertZaleniumDocs(){
driver.get(baseUrl);
driver.get(BASE_URL);

WebElement searchField = driver.findElement(By.name("q"));
searchField.sendKeys("Zalenium docs");
Expand Down

0 comments on commit e80a997

Please sign in to comment.