https://github.com/sudharsan-selvaraj/selenium-devtools-guide
A collection of bite size examples for using chrome DevTools protocol commands with Selenium Webdriver v4.
https://github.com/sudharsan-selvaraj/selenium-devtools-guide
automation chrome chrome-devtools-protocol chromedriver selenium selenium-v4 selenium-webdriver webdriver
Last synced: about 1 year ago
JSON representation
A collection of bite size examples for using chrome DevTools protocol commands with Selenium Webdriver v4.
- Host: GitHub
- URL: https://github.com/sudharsan-selvaraj/selenium-devtools-guide
- Owner: sudharsan-selvaraj
- Created: 2021-05-12T13:01:17.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-05-17T06:38:51.000Z (about 5 years ago)
- Last Synced: 2025-03-30T20:51:36.504Z (about 1 year ago)
- Topics: automation, chrome, chrome-devtools-protocol, chromedriver, selenium, selenium-v4, selenium-webdriver, webdriver
- Language: Java
- Homepage:
- Size: 231 KB
- Stars: 7
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# selenium-devtools-guide
A collection of bite size examples for using chrome DevTools protocol commands with Selenium Webdriver v4.
# Chrome Devtools Protocol:
The Chrome DevTools Protocol allows for tools to instrument, inspect, debug and profile Chromium, Chrome and other Blink-based browsers. Many existing [projects](https://github.com/ChromeDevTools/awesome-chrome-devtools) currently use the protocol. The Chrome DevTools uses this protocol and the team maintains its API.
List of all available devtools protocol command can be found [here](https://chromedevtools.github.io/devtools-protocol/)
# Examples:
Domain | Test file
------------- | -------------
Browser | [Browser.java](/src/test/java/com/github/sudharsan_selvaraj/cdp/Browserr.java)
Page | [Page.java](/src/test/java/com/github/sudharsan_selvaraj/cdp/Browserr.java)
Examples for other domain will be added soon.