無法單擊並從動態下拉列表中選擇值。請找到下面的代碼 -無法單擊並從動態下拉列表中選擇值
public static void main(String[] args)
{
// TODO Auto-generated method stub
//System.setProperty("webdriver.chrome.driver", "C:\\Chrome Driver\\chromedriver.exe");
//WebDriver Driver = new ChromeDriver();
WebDriver Driver = new FirefoxDriver();
Driver.get("http://www.spicejet.com/");
Driver.manage().timeouts().implicitlyWait(20, TimeUnit.SECONDS)
Driver.findElement(By.xpath(".//*[@id='ctl00_mainContent_ddl_originStation1_CTXT']")).click();
}
此外,我注意到Eclipse不斷打開Spicejet.com
運行後,它並沒有任何下降點擊了下來。要停止執行,我需要手動點擊Terminate
按鈕,否則它不會停止並持續很長時間(我相信4-6小時)
爲什麼在'main'函數中運行這些函數?除了上面的代碼,是否有代碼使用了一些循環或者什麼導致測試繼續運行!? –