package pages;
import org.openqa.selenium.WebDriver;
public class ViewCandidatesPage extends BasePage {
private String topBar = "//div[@class='oxd-topbar-header-title']";
public String textFromTopBar() {
return textFromElement(topBar);
}
public ViewCandidatesPage(WebDriver driver) {
super(driver);
}
}