Selenium Grid Hub shutdown command
Is there a command (from the command line or a webrequest) to shut down a grid 2.0 hub?
I have tried "curl -d action=shutdown http://localhost:4444/lifecycle-manager" (as POST request), I have also tried the usual http://localhost:4444/selenium-server/driver/?cmd=shutDownSeleniumServer
I've searched everywhere.开发者_高级运维 I would preferably like something without using rake or ant
At version 2.25.0 old-style hub managing added.
So now you can use request like this one to stop hub:
http://localhost:4444/lifecycle-manager?action=shutdown
精彩评论