selenium
文章平均质量分 52
lpd3803
这个作者很懒,什么都没留下…
展开
-
Selenium笔记 原理分析及其使用之一 webdriver
关于Selenium的原理分析,网上很多,推荐下面的博客 http://blog.csdn.net/ant_ren/article/details/7970793 在此不多描述。 下面基于Selenium 3.3.1, 分析下API, 在文件下common/exception.py定义了webdriver 的异常类型,继承于内置类Exception,后面的大多继承于此类: class原创 2017-06-06 16:13:32 · 654 阅读 · 0 评论 -
Selenium笔记 原理分析及其使用之二 webelement
在webdriver/remote/webelement.py中,定义了一般的DOM元素: class WebElement(object): def __init__(self, parent, id_, w3c=False):这里面也包括: 找element: find_element...,screenshot操作,和前面的webdriver.py差不多。 元素的属性:原创 2017-06-08 09:15:40 · 493 阅读 · 0 评论