Collections:
Start Microsoft Old Edge WebDriver Server
How to start Microsoft Old Edge WebDriver server?
✍: FYIcenter.com
You can start Microsoft Old Edge WebDriver server
as shown in this tutorial.
1. Open a command line window and run msedgedriver.exe. You see Microsoft Old Edge WebDriver Server is running and listening on port 9515.
C:\fyicenter>\fyicenter\selenium\edgedriver\msedgedriver.exe Starting MSEdgeDriver 76.0.174.0 (...) on port 9515 Only local connections are allowed. Please protect ports used by the WebDriver and related test frameworks to prevent access by malicious code.
2. Run the WebDriver "GET /status" service with the "curl" command:
C:\fyicenter> curl http://localhost:9515/status { "value": { "build": { "version": "76.0.174.0 (...)" }, "message": "MSEdgeDriver ready for new sessions.", "os": { "arch": "x86_64", "name": "Windows NT", "version": "10.0.17134" }, "ready": true } }
As you can see, Microsoft Old Edge WebDriver server is ready to use on port 9515.
You can also use JMeter or other HTTP client tools scripts to run WebDriver services.
Â
⇒ Selenium WebDriver Client APIs
⇠Microsoft Old Edge WebDriver Server
⇑ WebDriver and WebDriver Servers
⇑⇑ Selenium Tutorials
2020-02-29, 2030👍, 0💬
Popular Posts:
How to expand IPv6 addresses? In order to help your programming or testing tasks, FYIcenter.com has ...
How to turn off HTTP response compression in SoapUI? HTTP response compression reduces the data size...
How to valid UUID/GUID strings? In order to help your programming or testing tasks, FYIcenter.com ha...
How to validate domain name format? In order to help your programming or testing tasks, FYIcenter.co...
How to use HTTP protocol to post an XML message to a server? You can follow this tutorial to post an...