我正在用selenium來模擬一個from。問題現在在resulat頁面selenium混淆了顯示文本的值:它顯示了我第一個文本中的「parisl」文本和「marseile」中的第二。我不明白有什麼問題selenium顯示頁面出錯
這是我的代碼
public class SeleniumExample {
public static void main(String[] args) throws InterruptedException {
// The Firefox driver supports javascript
FirefoxProfile profile = new FirefoxProfile();
profile.setEnableNativeEvents(true);
RemoteWebDriver driver = new FirefoxDriver(profile);
// WebDriver driver = new FirefoxDriver();
// And now use this to visit Google
driver.get("http://www.voyages-sncf.com/");
// Find the text input element by its name
driver.findElement(By.name("origin_city")).sendKeys("paris");
driver.findElement(By.id("train-destination-city")).sendKeys("marseille");
Thread.sleep(4000);
driver.findElement(By.id("train-book")).click();}
}
我認爲這是由網站的自動完成引起的問題 – asma 2013-04-09 15:13:15