0
我想捕獲gmail登錄時的錯誤消息如果我不填充用戶名並單擊下一步按鈕,則會出現「請輸入您的電子郵件」消息,但是Selenium給出錯誤消息 - 參數未找到。 我的代碼是:Selenium WebDriver無法捕獲gmail登錄的錯誤消息
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.By;
import org.openqa.selenium.JavascriptExecutor;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.testng.Assert;
public class Msg
{
public static void main(String[] args) throws InterruptedException
{
WebDriver driver=new FirefoxDriver();
driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
driver.manage().window().maximize();
driver.get("http://www.gmail.com/");
driver.findElement(By.xpath(".//*[@id='next']")).click();
Thread.sleep(2000);
WebElement ele=driver.findElement(By.xpath(".//*[@id='next']"));
String js="argument[0].style.height='auto'; argument[0].style.visibility='visible';";
((JavascriptExecutor)driver).executeScript(js,ele);
String actual=ele.getText();
System.out.println(actual);
//String expected= "Please enter your email";
Assert.assertEquals(actual, "Please enter your email");
System.out.println("Pass");
}
}
能否請你分享你所得到的錯誤訊息? – Harish