操作系统:Windows Selenium版本:2.53.1.0 IDE:Visual Studio 2013 浏览器:Internet Explorer 11版本11.420
当我试图点击网页上的元素时,我收到了异常。单击链接并打开对话框时会发生这种情况。 Webelement.click()函数单击元素并打开模式对话框,但Click()需要时间返回,最后将异常记录为“对URL远程WebDriver服务器的HTTP请求”“60秒后超时”。 “
应该点击“Firefox Beta”下载按钮,“IE工具栏”会出现RUN和SAVE选项
点击“Firefox Beta”下载按钮,“IE工具栏”即将推出。 但是downloadElement.Click()会等待60秒并抛出异常。
以下是代码段:
string url = "https://www.mozilla.org/en-US/firefox/channel/#beta";
try{
IWebDriver driver = new InternetExplorerDriver();
driver.Navigate().GoToUrl(url);
Thread.Sleep(5000);
IWebElement downloadElement = driver.FindElement(By.XPath("//div[@id='download-button-desktop-beta']/ul/li/a/strong"));
Thread.Sleep(5000);
downloadElement.Click();
}catch{
//catch block
}
答案 0 :(得分:1)
尝试使用此xpath代替。
IWebElement downloadElement = driver.FindElement(By.XPath("/html/body/div[2]/div/main/section[1]/div/div/ul/li[1]/a/strong"));
有时它们是IE11的一些问题硒无法按预期工作。所以我在某些情况下使用双击而不是点击。
Actions action = new Actions(driver);
action.moveToElement(driver.findElement(By.xpath("/html/body/div[2]/div/main/section[1]/div/div/ul/li[1]/a/strong"))).doubleClick().perform();
尝试使用两者,希望它会有所帮助
答案 1 :(得分:0)
您可以在downloadElement.Click()之后添加隐式等待,并等待模式对话框完全加载。
答案 2 :(得分:0)
试试这个。它对我有用 -
package sbps;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.ie.InternetExplorerDriver;
public class cvs_signup
{
public static void main(String[] args) {
String url = "https://www.mozilla.org/en-US/firefox/channel/#beta";
try{
WebDriver driver = new InternetExplorerDriver();
driver.get(url);
Thread.sleep(5000);
WebElement downloadElement = driver.findElement(By.xpath("(//a[@href='https://download.mozilla.org/?product=firefox-beta-stub&os=win&lang=en-US'])[last()]"));
Thread.sleep(5000);
downloadElement.click();
}catch(Exception e){
//catch block
}
}
}