Collections:
Start ChromeDriver WebDriver Server
How to start Google ChromeDriver WebDriver server?
✍: FYIcenter.com
You can start Google ChromeDriver WebDriver server
as shown in this tutorial.
1. Open a command line window and run ChromeDriver.exe. You see ChromeDriver WebDriver Server is running and listening on port 9515.
C:\fyicenter>\fyicenter\selenium\chromedriver\chromedriver.exe
Starting ChromeDriver 75.0.3770.90 (...-refs/branch-heads/3770@{#1003})
on port 9515
Only local connections are allowed.
Please protect ports used by ChromeDriver 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": "75.0.3770.90 (...-refs\/branch-heads\/3770@{#1003})"
},
"message": "ChromeDriver ready for new sessions.",
"os": {
"arch": "x86_64",
"name": "Windows NT",
"version": "10.0.17134"
},
"ready": true
}
}
As you can see, Google ChromeDriver WebDriver server is ready to use.
You can also use JMeter or other HTTP client tools scripts to run WebDriver services.
⇒ Start Browser with ChromeDriver WebDriver
⇐ Google ChromeDriver WebDriver Server
2019-12-02, ∼2741🔥, 0💬
Popular Posts:
Where to find online test tools? FYIcenter.com has prepared a number of online test tools: Data Look...
How to expand IPv6 addresses? In order to help your programming or testing tasks, FYIcenter.com has ...
Where to find tutorials on UFT (Unified Functional Testing) tool? I want to know how to use UFT. Her...
How to find out my browser's identification information? To help you to see your browser identificat...
How to validate Mod 10 (Luhn Algorithm) checksum? In order to help your programming or testing tasks...