All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.polonium.webdriver.example.pages.SearchResultsPage Maven / Gradle / Ivy

package com.polonium.webdriver.example.pages;

import org.openqa.selenium.By;

import com.polonium.webdriver.PoloniumPage;

public class SearchResultsPage extends PoloniumPage{
	private static final String RESULT_CLASS_NAME = "result";

	public boolean isAnyResultDisplayed(){
		return (findWebElement(By.className(RESULT_CLASS_NAME)) != null);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy