wkeeling / selenium-wire

Extends Selenium's Python bindings to give you the ability to inspect requests made by the browser.
MIT License
1.86k stars 240 forks source link

AttributeError: 'Chrome' object has no attribute 'backend' #691

Open yitiaofeixiangdeyu opened 1 year ago

yitiaofeixiangdeyu commented 1 year ago

Selenium-wire Version: 4.5.6 image image image image my code: python`import seleniumwire.undetected_chromedriver as uc from selenium.webdriver.support.wait import WebDriverWait

chrome_options = uc.ChromeOptions() chrome_options.add_argument("--disable-popup-blocking") browser = uc.Chrome( version_main=114, options=chrome_options, ) wait = WebDriverWait(browser, 20) url = 'https://fw.ybj.beijing.gov.cn/hallEnter/#/search/ServiceGuidelines' browser.get(url) `