码迷,mamicode.com
首页 > 其他好文 > 详细

cannot connect to chrome at 127.0.0.1:9222

时间:2020-06-14 16:32:39      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:问题   解决   tac   screen   error   user   ons   电脑   item   

  • window10系统,先cmd打开chrome,
    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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!