我对Python有一个奇怪的问题(或者我只是一个菜鸟)。
我写了一个小机器人来使用selenium在浏览器上自动执行某些操作,我想在Ubuntu VPS上运行,所以我已经安装了Selenium和我需要的其他模块,我运行了脚本但是当它到来时到第一行
WebDriverWait(driver, 10).until(EC.element_to_be_clickable((By.ID, "free_play_captcha_types")))
driver.find_element_by_id("free_play_captcha_types").click()
driver.find_element_by_id("free_play_captcha_types").click()
driver.find_element_by_xpath("//option[contains(@value, 'recaptcha_v1')]").click()
我收到socket.error: errno [111] Connection refused
错误。
我已经尝试在运行脚本之前运行selenium服务器但没有任何变化......有人有建议吗?
提前谢谢。
另一个信息:我在不同的VPS上运行了相同的脚本,并且运行成功...