在使用selenium写爬虫时打开chrome时不能正常打开网址,地址栏出现data:;
解决方法
options = webdriver.ChromeOptions()
options.add_argument("--remote-debugging-port=9222")
options.binary_location = r"D:\\Chrome\\Chrome.exe"
chrome_driver_path = r"D:\\Chrome\\chromedriver.exe"
driver = webdriver.Chrome(executable_path=chrome_driver_path, options=options)
driver.get(url)
© 版权声明
吾爱博客|AYFRE.COM 版权所有,转载请标明出处。
THE END
请登录后查看评论内容