public class TestGoogle extends WebDriverBaseTestPage<WebDriverTestPage> {
@FindBy(locator = "test_google")
private static QAFWebElement test_google;
public void getGoogle(String give) {
get("
https://www.google.ca/");
// sendKeys(give , "test_google");
test_google.sendKeys(give);
Reporter.logWithScreenShot("getting screen shot..");
}
@Override
protected void openPage(PageLocator locator, Object... args) {
// TODO Auto-generated method stub
}
Test Class: