Chrome DevTools Protocol in Python

Using this and PyChrome, you can read network requests in Selenium.

David Shivaji

--

It might not sound like it, but this is actually really cool. Why would you want to read network requests tho? You can use them to find endpoints.

Use this:

import pychrome
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument("user-data-dir=/Users/davidshivaji/Library/Application Support/Google/Chrome/Profile 7")…

--

--