12 lines
242 B
Java
12 lines
242 B
Java
package conference;
|
|
|
|
import core.PageObject;
|
|
import org.openqa.selenium.By;
|
|
|
|
public class ConferencesDashboardPage extends PageObject {
|
|
|
|
public String getSubTitle() {
|
|
return driver.findElement(By.tagName("h2")).getText();
|
|
}
|
|
}
|