You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Base on your code I see you try to catch SIGINT and address it to shut down selenium.
Problem is that on my Windows 7 SP1 it looks like http://localhost:4444/selenium-server/driver/?cmd=shutDownSeleniumServer is not to be sent. but the 'exec' method is called because: i got "Shutting down Selenium server: http://127.0.0.1:4444" message however I didn't get "Shut down Selenium server: " message, so I need to manualy shut down Selenium server: http://127.0.0.1:4444 from my web browser to get "OKOK" output, Please contact with me to get more details.
The text was updated successfully, but these errors were encountered:
I'm seeing this issue on Windows 8.1. I'm using grunt-protractor-webdriver alongside grunt-proctrator-runner. My protractor_webdriver config looks like this:
When running my tests with only Chrome and "keepAlive" not set explicitly, the build fails after my tests have already passed. When setting "keepAlive" to true, I see this output:
Running "protractor_webdriver:default" (protractor_webdriver) task
Starting Selenium server
Started Selenium server: http://127.0.0.1:4444
Running "protractor:local" (protractor) task
[launcher] Running 2 instances of WebDriver
Session created: count=1, browserName=firefox
Session created: count=1, browserName=chrome
.Session deleted: 1 session(s) left
------------------------------------
[chrome #2] PID: 10780
[chrome #2] Specs: <pathToSpecs>
[chrome #2]
[chrome #2] Using the selenium server at http://localhost:4444/wd/hub
[chrome #2] Started
[chrome #2] *.
[chrome #2]
[chrome #2]
[chrome #2] 2 specs, 0 failures, 1 pending spec
[chrome #2] Finished in 9.075 seconds
[launcher] 1 instance(s) of WebDriver still running
.Session deleted: Keeping the Selenium server alive
Shutting down Selenium server: http://127.0.0.1:4444
Done, without errors.
However, my terminal (currently using cmder on Windows) shows that java.exe is still running in the tab, and I have to escape it manually before coming back to Windows cmd.
It looks like the http.get call on line 117 of protractor_webdriver.js is never handling a response, I assume because grunt exits before the call returns.
Hi,
Base on your code I see you try to catch SIGINT and address it to shut down selenium.
Problem is that on my Windows 7 SP1 it looks like http://localhost:4444/selenium-server/driver/?cmd=shutDownSeleniumServer is not to be sent. but the 'exec' method is called because: i got "Shutting down Selenium server: http://127.0.0.1:4444" message however I didn't get "Shut down Selenium server: " message, so I need to manualy shut down Selenium server: http://127.0.0.1:4444 from my web browser to get "OKOK" output, Please contact with me to get more details.
The text was updated successfully, but these errors were encountered: