Hovers - denhoefel/EcommerceSeleniumProject GitHub Wiki
Page Object
package pages;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.interactions.Actions;
public class HoversPage {
private WebDriver driver;
private By figureBox = By.className("figure");
private By boxCaption = By.className("figcaption");
public HoversPage(WebDriver driver){
this.driver = driver;
}
/**
* @param index starts at 1
*/
public FigureCaption hoverOverFigure(int index){
WebElement figure = driver.findElements(figureBox).get(index - 1);
Actions actions = new Actions(driver);
actions.moveToElement(figure).perform();
return new FigureCaption(figure.findElement(boxCaption));
}
public class FigureCaption{
private WebElement caption;
private By header = By.tagName("h5");
private By link = By.tagName("a");
public FigureCaption(WebElement caption){
this.caption = caption;
}
public boolean isCaptionDisplayed(){
return caption.isDisplayed();
}
public String getTitle(){
return caption.findElement(header).getText();
}
public String getLink(){
return caption.findElement(link).getAttribute("href");
}
public String getLinkText(){
return caption.findElement(link).getText();
}
}
}
Test
package hover;
import base.BaseTests;
import org.testng.annotations.Test;
import pages.HoversPage;
import static org.testng.Assert.*;
public class HoverTests extends BaseTests {
@Test
public void testHoverUser1(){
var hoversPage = homePage.clickHovers();
var caption = hoversPage.hoverOverFigure(1);
assertTrue(caption.isCaptionDisplayed(), "Caption not displayed");
assertEquals(caption.getTitle(), "name: user1", "Caption title incorrect");
assertEquals(caption.getLinkText(), "View profile", "Caption link text incorrect");
assertTrue(caption.getLink().endsWith("/users/1"), "Link incorrect");
}
}