使用带有Selenium的Web应用程序启动Firefox浏览器

时间:2015-04-03 04:55:57

标签: c# asp.net selenium selenium-webdriver automation

我可以使用Windows应用程序启动Firefox浏览器。

但我无法使用具有相同代码的ASP.NET Web应用程序启动Firefox浏览器。

我收到了以下错误。

无法在45000毫秒内绑定到锁定端口7054

我在Window和Web Application中使用了以下代码,

IWebDriver driver = new FirefoxDriver();

ISelenium sel = new WebDriverBackedSelenium(driver, "http://www.gsmarena.com");

sel.Start();

sel.Open("/");

可以使用带有Selenium的Web应用程序启动Firefox浏览器吗?

1 个答案:

答案 0 :(得分:0)

你为什么不试试,

driver.Navigate().GoToUrl("http://www.gsmarena.com");