selenium学习笔记
疯狂的豆小芽
这个作者很懒,什么都没留下…
展开
-
selenium学习笔记之库和方法
一些库的功能from selenium.webdriver.support import expected_conditions #检测元素from selenium.webdriver.common.keys import Keys # 键盘操作类定位元素的方法定位单个元素:find_element_by_idfind_element_by_namefind_ele...原创 2019-01-06 21:29:21 · 179 阅读 · 0 评论 -
selenium学习笔记之模拟登陆
随机生成注册账号需要使用random模块和sample方法import randomfor i in range(5): instance = random.sample('123abc', 3) print(instance)以上实例运行后输出结果为:['c', '2', '3']['3', 'a', '2']['3', 'b', 'a']['c', '3', ...原创 2019-01-06 22:56:23 · 145 阅读 · 0 评论 -
selenium学习笔记之使用配置文件
使用配置文件可以方便后期代码的维护和管理,例如:网页上元素的ID发生变化,如果没有配置文件的话要取修改源代码,很麻烦下面是使用配置文件的方法:1.使用第三方库configparser,安装方法:pip install configparser,使用import时,python3为configparser,python2为Configparser.2.实例化configparser:cf =...原创 2019-01-07 18:01:22 · 744 阅读 · 0 评论