当前位置:首页 > selenium

Linux系统下使用Python+selenium+谷歌浏览器下载文件

zhangsir3年前 (2022-12-29)138
fromseleniumwireimportwebdriverimporttimech_o......

python selenium 使用代理ip

zhangsir3年前 (2022-12-22)155
代码如下:fromseleniumimportwebdriverchromeOptions......

python selenium find_element_by_xpath 方法已经被弃用的解决办法

zhangsir3年前 (2022-10-27)296
背景:在使用最新3.10.4Python版本时候,用selenium进行xpath定位元素,编译器提示:DeprecationWarning:find_element_by_xpath is deprecated. Please use find_element(by=By.XPATH, value...

Selenium添加Cookie来实现自动登录

zhangsir3年前 (2022-10-09)397
Selenium添加Cookie来实现自动登录第一步获取你登录的cookie,以csdn为例from selenium import webdriver driver = webdriver.Chrome() driver.get('...

python+selenium元素定位的8种方法

zhangsir3年前 (2022-09-21)304
定位元素,selenium提供了8中元素定位方法:(1)find_element_by_id() :html规定,id在html中必须是唯一的,有点类似于身份证号(2)find_element_by_name() :html规定,name用来指定元素的名称,有点类似于人名(3)find_elemen...