2016-08-30 22:04:37 +05:30
|
|
|
package main.java.com.baeldung.selenium;
|
|
|
|
|
2016-10-07 18:16:04 +05:30
|
|
|
import java.util.List;
|
2016-10-22 10:51:53 +05:30
|
|
|
import java.util.NoSuchElementException;
|
2016-10-07 18:16:04 +05:30
|
|
|
import java.util.concurrent.TimeUnit;
|
|
|
|
|
|
|
|
import org.openqa.selenium.By;
|
2016-08-30 22:04:37 +05:30
|
|
|
import org.openqa.selenium.WebDriver;
|
2016-10-07 18:16:04 +05:30
|
|
|
import org.openqa.selenium.WebElement;
|
2016-08-30 22:04:37 +05:30
|
|
|
import org.openqa.selenium.firefox.FirefoxDriver;
|
|
|
|
|
|
|
|
public class SeleniumExample {
|
|
|
|
|
|
|
|
private WebDriver webDriver;
|
2016-10-02 18:01:49 +05:30
|
|
|
private String url = "http://www.baeldung.com/";
|
2016-10-07 18:16:04 +05:30
|
|
|
|
2016-08-30 22:04:37 +05:30
|
|
|
public SeleniumExample() {
|
2016-10-28 22:26:56 +05:30
|
|
|
System.setProperty("webdriver.firefox.marionette", "C:\\selenium\\geckodriver.exe");
|
2016-08-30 22:04:37 +05:30
|
|
|
webDriver = new FirefoxDriver();
|
2016-10-07 18:16:04 +05:30
|
|
|
webDriver.manage().window().maximize();
|
|
|
|
webDriver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
|
2016-08-30 22:04:37 +05:30
|
|
|
webDriver.get(url);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void closeWindow() {
|
|
|
|
webDriver.close();
|
|
|
|
}
|
|
|
|
|
2016-10-02 18:01:49 +05:30
|
|
|
public String getTitle() {
|
2016-08-30 22:04:37 +05:30
|
|
|
return webDriver.getTitle();
|
|
|
|
}
|
|
|
|
|
2016-10-28 22:26:56 +05:30
|
|
|
public void getAboutBaeldungPage() {
|
2016-10-07 18:16:04 +05:30
|
|
|
closeOverlay();
|
|
|
|
clickAboutLink();
|
|
|
|
clickAboutUsLink();
|
|
|
|
}
|
|
|
|
|
2016-10-28 22:26:56 +05:30
|
|
|
private void closeOverlay() {
|
2016-10-07 18:16:04 +05:30
|
|
|
List<WebElement> webElementList = webDriver.findElements(By.tagName("a"));
|
2016-10-28 22:26:56 +05:30
|
|
|
try {
|
|
|
|
if (webElementList != null && !webElementList.isEmpty()) {
|
|
|
|
webElementList.stream().filter(webElement -> "Close".equalsIgnoreCase(webElement.getAttribute("title"))).findAny().orElseThrow(NoSuchElementException::new).click();
|
|
|
|
}
|
|
|
|
} catch (NoSuchElementException exception) {
|
|
|
|
exception.printStackTrace();
|
2016-10-07 18:16:04 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void clickAboutLink() {
|
|
|
|
webDriver.findElement(By.partialLinkText("About")).click();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void clickAboutUsLink() {
|
|
|
|
webDriver.findElement(By.partialLinkText("About Baeldung.")).click();
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isAuthorInformationAvailable() {
|
2016-11-11 09:03:53 +05:30
|
|
|
return webDriver.findElement(By.xpath("//*[contains(text(), 'an engineer with a passion for teaching and building stuff on the web')]")).isDisplayed();
|
2016-10-07 18:16:04 +05:30
|
|
|
}
|
2016-08-30 22:04:37 +05:30
|
|
|
}
|