其他分享
首页 > 其他分享> > 19-selenium操作已启动的浏览器

19-selenium操作已启动的浏览器

作者:互联网

目录

1. 步骤

2. 注意


1. 步骤

  

         # windows                                 
         $ chrome.exe --remote-debugging-port=9222       

        # mac   
        $ /Applications/Google/Chrome.app/Contents/MacOS/Google/Chrome -remote-debugging-port=9222

 

# -*- coding: utf-8 -*-
# @Time    : 2021/2/3
# @Author  : 大海

from selenium import webdriver

# 前面打开的浏览器,手动打开百度首页
# 下面的代码是在搜索框输入内容

options = webdriver.ChromeOptions()
options.debugger_address = "127.0.0.1:9222"
driver = webdriver.Chrome(options=options)
driver.find_element_by_id('kw').send_keys('测试一下')

2. 注意

 

 

标签:webdriver,浏览器,启动,19,selenium,options,Chrome,9222
来源: https://blog.csdn.net/IT_heima/article/details/113620146