ExplicitWait
ExplicitWait
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.WebDriverWait;
import org.testng.annotations.Test;
dr.get("https://accounts.google.com/signup/v2/webcreateaccount?
flowName=GlifWebSignIn&flowEntry=SignUp");
//dr.get("");
//SendKeys
//Click
WebElement we3=
dr.findElement(By.xpath("//span[contains(text(),'Next')]"));
click(dr, we3, 10);
}