Modifying methods in test files

This commit is contained in:
Sandeep Kumar 2016-10-02 18:01:49 +05:30
parent fe59ea2923
commit d4e7c9d4af
6 changed files with 56 additions and 115 deletions

View File

@ -1,4 +1,5 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>com.baeldung</groupId> <groupId>com.baeldung</groupId>
<artifactId>selenium-junit-testng</artifactId> <artifactId>selenium-junit-testng</artifactId>
@ -14,6 +15,17 @@
<target>1.8</target> <target>1.8</target>
</configuration> </configuration>
</plugin> </plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.19.1</version>
<configuration>
<testSourceDirectory></testSourceDirectory>
<includes>
<include>Test*.java</include>
</includes>
</configuration>
</plugin>
</plugins> </plugins>
</build> </build>
<dependencies> <dependencies>

View File

@ -6,8 +6,7 @@ import org.openqa.selenium.firefox.FirefoxDriver;
public class SeleniumExample { public class SeleniumExample {
private WebDriver webDriver; private WebDriver webDriver;
private final String url = "http://www.baeldung.com/"; private String url = "http://www.baeldung.com/";
private final String expectedTitle = "Baeldung | Java, Spring and Web Development tutorials";
public SeleniumExample() { public SeleniumExample() {
webDriver = new FirefoxDriver(); webDriver = new FirefoxDriver();
@ -18,12 +17,8 @@ public class SeleniumExample {
webDriver.close(); webDriver.close();
} }
public String getActualTitle() { public String getTitle() {
return webDriver.getTitle(); return webDriver.getTitle();
} }
public String getExpectedTitle() {
return expectedTitle;
}
} }

View File

@ -10,6 +10,7 @@ import org.junit.Test;
public class TestSeleniumWithJUnit { public class TestSeleniumWithJUnit {
private SeleniumExample seleniumExample; private SeleniumExample seleniumExample;
private String expectedTitle = "Baeldung | Java, Spring and Web Development tutorials";
@Before @Before
public void setUp() { public void setUp() {
@ -23,8 +24,8 @@ public class TestSeleniumWithJUnit {
@Test @Test
public void whenPageIsLoaded_thenTitleIsAsPerExpectation() { public void whenPageIsLoaded_thenTitleIsAsPerExpectation() {
String expectedTitle = seleniumExample.getExpectedTitle(); String actualTitle = seleniumExample.getTitle();
String actualTitle = seleniumExample.getActualTitle(); assertNotNull(actualTitle);
assertEquals(actualTitle, expectedTitle); assertEquals(actualTitle, expectedTitle);
} }
} }

View File

@ -10,6 +10,7 @@ import org.testng.annotations.Test;
public class TestSeleniumWithTestNG { public class TestSeleniumWithTestNG {
private SeleniumExample seleniumExample; private SeleniumExample seleniumExample;
private String expectedTitle = "Baeldung | Java, Spring and Web Development tutorials";
@BeforeSuite @BeforeSuite
public void setUp() { public void setUp() {
@ -23,8 +24,8 @@ public class TestSeleniumWithTestNG {
@Test @Test
public void whenPageIsLoaded_thenTitleIsAsPerExpectation() { public void whenPageIsLoaded_thenTitleIsAsPerExpectation() {
String expectedTitle = seleniumExample.getExpectedTitle(); String actualTitle = seleniumExample.getTitle();
String actualTitle = seleniumExample.getActualTitle(); assertNotNull(actualTitle);
assertEquals(actualTitle, expectedTitle); assertEquals(actualTitle, expectedTitle);
} }
} }

View File

@ -1,34 +0,0 @@
package com.baeldun.selenium.testng;
import static org.testng.Assert.assertEquals;
import static org.testng.Assert.assertNotNull;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.testng.annotations.AfterSuite;
import org.testng.annotations.BeforeSuite;
import org.testng.annotations.Test;
public class TestSeleniumWithTestNG {
private WebDriver webDriver;
private final String url = "http://www.baeldung.com/";
private final String expectedTitle = "Baeldung | Java, Spring and Web Development tutorials";
@BeforeSuite
public void setUp() {
webDriver = new FirefoxDriver();
webDriver.get(url);
}
@AfterSuite
public void tearDown() {
webDriver.close();
}
@Test
public void whenPageIsLoaded_thenTitleIsAsPerExpectation() {
String actualTitleReturned = webDriver.getTitle();
assertNotNull(actualTitleReturned);
assertEquals(expectedTitle, actualTitleReturned);
}
}

View File

@ -1,34 +0,0 @@
package com.baeldung.selenium.junit;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
public class TestSeleniumWithJUnit {
private WebDriver webDriver;
private final String url = "http://www.baeldung.com/";
private final String expectedTitle = "Baeldung | Java, Spring and Web Development tutorials";
@Before
public void setUp() {
webDriver = new FirefoxDriver();
webDriver.get(url);
}
@After
public void tearDown() {
webDriver.close();
}
@Test
public void whenPageIsLoaded_thenTitleIsAsPerExpectation() {
String actualTitleReturned = webDriver.getTitle();
assertNotNull(actualTitleReturned);
assertEquals(expectedTitle, actualTitleReturned);
}
}