gpt4 book ai didi

python - Selenium webdriver.get() 方法并不总是有效

转载 作者:行者123 更新时间:2023-12-01 01:53:27 26 4
gpt4 key购买 nike

link = "https://www.google.com"
chrome_options = webdriver.ChromeOptions()
chrome_options.add_argument('--proxy-server=%s' % str(xxx))
chrome = webdriver.Chrome(chrome_options=chrome_options)
time.sleep(3)
chrome.get(link)
print("po get")
time.sleep(1)
chrome.get(link)
time.sleep(15)

您好,我长期以来一直对 Selenium 有疑问,我想找到一种解决方法问题是,几乎每次我运行一个打开 selenium 的脚本时/即使我像这样使用它对于诸如以下的测试:

from selenium import webdriver
chrome = webdriver.Chrome()
chrome.get(https://www.google.com)

它有时仍然无法访问该网站,我认为这是因为 selenium 打开速度太慢,但即使在很好地打开之后它也没有获得值,遗憾的是它只是卡在一个空浏览器上,该浏览器中的数据url 窗口...知道我应该做什么来修复它吗?

最佳答案

好吧,几个小时后,我决定稍微尝试一下,将 ( "") 更改为 ( ' ' ),正如我所见,它有效:D 我不知道为什么字符串 ""有问题

这是我的代码的编辑行:

chrome.get('https://www.google.com')

( I ve tried it with proxies with loop that was starting the webdriver 100 times , and everytime after i've changed it, it passed )

关于python - Selenium webdriver.get() 方法并不总是有效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50498809/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com