标签:问题 解决 tac screen error user ons 电脑 item
chrome --remote-debugging-port=9222
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.common.by import By
def test_adduser():
options=Options()
options.add_experimental_option(‘debuggerAddress‘, ‘127.0.0.1:9222‘)
driver=webdriver.Chrome(options=options)
driver.implicitly_wait(5)
driver.find_element(By.CSS_SELECTOR,‘.js_service_list a:nth-child(1) .index_service_cnt_item_title‘).click()
> raise exception_class(message, screen, stacktrace)
E selenium.common.exceptions.WebDriverException: Message: unknown error: cannot connect to chrome at 127.0.0.1:9222
E from chrome not reachable
..\venv\lib\site-packages\selenium\webdriver\remote\errorhandler.py:242: WebDriverException
重启电脑,问题解决
cannot connect to chrome at 127.0.0.1:9222
标签:问题 解决 tac screen error user ons 电脑 item
原文地址:https://www.cnblogs.com/Uni-Hoang/p/13125108.html