Working with JSON Wire Protocol: Selenium
INTRODUCTION Selenium is a browser Automation tool which uses JSON Wire Protocol All implementations of WebDriver that communicate with the browser, or a RemoteWebDriver server shall use a common wire protocol. This wire protocol defines a RESTful web service using JSON over HTTP. The wire protocol is implemented in request/response pairs of "commands" and "responses". Step1 - Download Selenium Stand Alone Server. Step2 - Download any Driver.exe. ie geckodriver for firefox or chromedriver for ch Step3 - Keep both Files in same folder(JSON)- D:\selenium-server\JSON Open cmd and run the following commands- cd D:\selenium-server\JSON and give this command to start selenium server - java -jar selenium-server-standalone-3.14.0.jar (Allow the access, and you will see - Launching a standalone Selenium Server on port 4444 Selenium Server is up and running on your port 4444) in your browser - ...

Comments
Post a Comment