Helium文档13-WebUI自动化-helium快速切换到selenium状态并调用其方法
前言
前面说过helium是对Selenium 进行了封装,那么我们如何使用selenium的方法呢,通过下面的介绍,我们能够清楚在helium中能够使用selenium的任何方法
入参介绍
def get_driver():
"""
Returns the Selenium WebDriver currently used by Helium to execute all
commands. Each Helium command such as ``click("Login")`` is translated to a
sequence of Selenium commands that are issued to this driver.
"""
return _get_api_impl().get_driver_impl()
使用说明
我们参考一篇博文
Selenium2+python自动化28-table定位
https://www.cnblogs.com/yoyoketang/p/6287962.html
其中定位代码如下:
五、参考代码:
相关文章