"Copy as Fetch" using selenium/selenium-wire python chrome dev tools

65 Views Asked by At

i tried using selenium-wire and python to fetch data from network calls so far i was able to fetch the url from which i want to fetch data using below code

for request in driver.requests:
  if request.response:
    if request.url.startswith("https://example.com"):
      print(request.response)

How do I "Copy as fetch" in that network url as shown in screenshot below?

link to the copy as fetch option

0

There are 0 best solutions below