omkarcloud / botasaurus

The All in One Framework to build Awesome Scrapers.
https://www.omkar.cloud/botasaurus/
MIT License
1.18k stars 107 forks source link

How to use run_cdp_command ? #148

Open T-naul opened 2 weeks ago

T-naul commented 2 weeks ago

In selenium run_cdp_command is: driver.execute_cdp_cmd("cmd", {"key": values}) I try this with driver.run_cdp_command("cmd", {"key": values}) //or driver.run_cdp_command({"cmd": {"key": values}}) //or driver.run_cdp_command(["cmd", {"key": values}]) //or driver.run_cdp_command('"cmd" {"key": values}') but all it not working for me. How to use run_cdp_command ? Can someone help me? Thank you so much -.-