Changed url of target website to FreDL

This commit is contained in:
Dirk Jahnke 2019-07-25 09:42:32 +02:00
parent f05275ed5b
commit d05bb1ef53
1 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ import org.testng.annotations.Test;
public class BasicTest {
private WebDriver driver;
String URL = "http://google.com";
String URL = "https://0.fredldev.fremo-net.eu";
@BeforeClass
public void testSetUp() {
@ -26,7 +26,7 @@ public class BasicTest {
public void verifyGooglePageTitle() {
driver.navigate().to(URL);
String getTitle = driver.getTitle();
Assert.assertEquals(getTitle, "Google");
Assert.assertEquals(getTitle, "FreDL");
}
@AfterClass