import java.util.concurrent.TimeUnit;import org.openqa.selenium.By;import org.openqa.selenium.WebDriver;import org.openqa.selenium.WebElement;import org.openqa.selenium.firefox.FirefoxDriver;import org.openqa.selenium.support.ui.ExpectedConditions;import org.openqa.selenium.support.ui.WebDriverWait;public class NewGmail { public static void main(String[] args) { WebDriver driver = new FirefoxDriver(); driver.manage().window().maximize(); String url = "https://accounts.google.com/signin"; driver.get(url); driver.findElement(By.id("identifierId")).sendKeys("cp8805"); //driver.manage().timeouts().implicitlyWait(20, TimeUnit.SECONDS); WebDriverWait wait=new WebDriverWait(driver, 20); driver.findElement(By.xpath("//span[@class='RveJvd snByac']")).click(); driver.manage().timeouts().implicitlyWait(40, TimeUnit.SECONDS); driver.findElement(By.xpath("//input[@class='whsOnd zHQkBf']")).sendKeys("xxxxxx"); driver.findElement(By.xpath("//span[@class='RveJvd snByac']")).click(); } }郵件ID后,我的密碼也會(huì)寫在ID框選項(xiàng)中,并且服務(wù)器重定向到下一個(gè)密碼頁(yè)面。我想問(wèn)一下我該怎么做,以便僅在密碼頁(yè)面中輸入我的密碼。
添加回答
舉報(bào)
0/150
提交
取消