2013-04-04 3 views
10

Я использую selenium-server-standalone-2.28.0.jar. Запущенный ступицу и Запущенный слушателя с помощью следующей командыSelenium WebDriver не подключается к Firefox 20

"C:\Program Files (x86)\Java\jre7\bin\Java.exe" -jar selenium-server-standalone-2.28.0.jar -role webdriver -hub http://localhost:4444/grid/register -port 5557 -browser "browserName=firefox",maxInstances=5,platform=WINDOWS,javaScriptEnabled=true,TAKES_SCREENSHOT=true 

открывается пустое окно Firefox и отображается то следующее сообщение об ошибке:

Execute 
System.InvalidOperationException: Unable to connect to host 127.0.0.1 on port 7055 after 45000 ms. Firefox console output: 
*** LOG addons.manager: Application has been upgraded 
*** LOG addons.xpi: startup 
*** LOG addons.xpi: Skipping unavailable install location app-system-local 
*** LOG addons.xpi: Skipping unavailable install location app-system-share 
*** LOG addons.xpi: Ignoring file entry whose name is not a valid add-on ID:   C:\Users\PR~1.GRO\AppData\Local\Temp\anonymous768293325561108937webdriver-profile\extensions\webdriver-staging 
*** LOG addons.xpi: checkForChanges 
*** LOG addons.xpi-utils: Opening database 
*** LOG addons.xpi-utils: Creating database schema 
*** LOG addons.xpi: New add-on [email protected] installed in app-profile 
*** Blocklist::_loadBlocklistFromFile: blocklist is disabled 
*** LOG addons.xpi: New add-on {972ce4c6-7e08-4474-a285-3208198ce6fd} installed in app-global 
*** LOG addons.xpi: New add-on [email protected] installed in winreg-app-global 
*** LOG addons.xpi: New add-on [email protected] installed in winreg-app-global 
*** LOG addons.xpi: New add-on [email protected] installed in winreg-app-global 
*** LOG addons.xpi: Updating database with changes to installed add-ons 
*** LOG addons.xpi-utils: Updating add-on states 
*** LOG addons.xpi-utils: Writing add-ons list 
*** LOG addons.manager: shutdown 
*** LOG addons.xpi: shutdown 
*** LOG addons.xpi-utils: shutdown 
*** LOG addons.xpi-utils: Database closed 
*** LOG addons.xpi: startup 
*** LOG addons.xpi: Skipping unavailable install location app-system-local 
*** LOG addons.xpi: Skipping unavailable install location app-system-share 
*** LOG addons.xpi: Ignoring file entry whose name is not a valid add-on ID: C:\Users\PR~1.GRO\AppData\Local\Temp\anonymous768293325561108937webdriver-profile\extensions\webdriver-staging 
*** LOG addons.xpi: checkForChanges 
*** LOG addons.xpi: No changes found 

at OpenQA.Selenium.Remote.RemoteWebDriver.UnpackAndThrowOnError(Response errorResponse) in c:\Projects\WebDriver\trunk\dotnet\src\WebDriver\Remote\RemoteWebDriver.cs:line 1002 
at OpenQA.Selenium.Remote.RemoteWebDriver.Execute(String driverCommandToExecute, Dictionary`2 parameters) in c:\Projects\WebDriver\trunk\dotnet\src\WebDriver\Remote\RemoteWebDriver.cs:line 844 
at OpenQA.Selenium.Remote.RemoteWebDriver.StartSession(ICapabilities desiredCapabilities) in c:\Projects\WebDriver\trunk\dotnet\src\WebDriver\Remote\RemoteWebDriver.cs:line 809 
at OpenQA.Selenium.Remote.RemoteWebDriver..ctor(ICommandExecutor commandExecutor, ICapabilities desiredCapabilities) in c:\Projects\WebDriver\trunk\dotnet\src\WebDriver\Remote\RemoteWebDriver.cs:line 85 
at OpenQA.Selenium.Remote.RemoteWebDriver..ctor(Uri remoteAddress, ICapabilities desiredCapabilities, TimeSpan commandTimeout) in c:\Projects\WebDriver\trunk\dotnet\src\WebDriver\Remote\RemoteWebDriver.cs:line 117 
at OpenQA.Selenium.Remote.RemoteWebDriver..ctor(Uri remoteAddress, ICapabilities desiredCapabilities) in c:\Projects\WebDriver\trunk\dotnet\src\WebDriver\Remote\RemoteWebDriver.cs:line 106 
at SHL.Test.Selenium.ScreenShotRemoteWebDriver..ctor(Uri remoteAddress, ICapabilities desiredCapabilities) in C:\Preethi\vs1\WebTest\SeleniumWebTest\Framework\SHL.Test.Selenium\ScreenShotRemoteWebDriver.cs:line 9 
at SHL.Test.Selenium.TestContext..ctor(Action testRun, ITestEnvironment testEnvironment, DesiredCapabilities desiredCapabilities) in C:\Preethi\vs1\WebTest\SeleniumWebTest\Framework\SHL.Test.Selenium\TestContext.cs:line 31 
at SHL.Test.Selenium.TestBase.InitSelenium(DesiredCapabilities desiredCapabilities, ITestEnvironment testEnvironment, Action testRun) in C:\Preethi\vs1\WebTest\SeleniumWebTest\Framework\SHL.Test.Selenium\TestBase.cs:line 112 

На отладку, пошел в Firefox браузер дополнений что Firefox webDriver несовместим с Firefox 20.0 Текущая версия Firefox для веб-браузера - 2.28.0

Какую последнюю версию Firefox я могу использовать или есть любая альтернатива для этой проблемы?

+0

Попробуйте Селен версия 2.32.It отлично работает для Firefox 20. – MilanYadav

ответ

1

Firefox 20 только что вышел, для разработчиков Selenium, вероятно, потребуется несколько дней, чтобы исправить любые проблемы совместимости, возникшие.

Последняя версия Selenium - 2.31.0 (доступно here), которая будет работать с Firefox 19.0.2. Любая версия Selenium ниже 2.30.0 не будет работать с FireFox 19 и выше, поэтому я предлагаю вам сначала попробовать обновить Selenium до последней версии.

Чтобы быть ясным, я еще не загрузил и попробовал FireFox 20, поэтому не знаю, насколько совместим Selenium 2.31.0.

0

У меня Ubuntu 12.04 64bit. Selenium прекратил работу после последнего обновления до 20. Я использовал Eclipse (JDK 7). Я заменил Eclipse.ini на использование JDK 6 и начал работать. Webdriver иногда зависает, но работает большую часть времени (это может быть проблема с веб-сайтом, который я тестирую). Чтобы быть в безопасности, я отключил автоматические обновления Firefox.

Смежные вопросы