Selenium2Library系列 keywords 之 _ElementKeywords
#公有方法:
(1)current_frame_contains(self, text, loglevel='INFO')
(2)current_frame_should_not_contain(self, text, loglevel='INFO')
(3)element_should_contain(self, locator, expected, message='')
(4)frame_should_contain(self, locator, text, loglevel='INFO')
(5)page_should_contain(self, text, loglevel='INFO')
(6)page_should_contain_element(self, locator, message='', loglevel='INFO')
(7)locator_should_match_x_times(self, locator, expected_locator_count, message='', loglevel='INFO')
(8)page_should_not_contain(self, text, loglevel='INFO')
(9)page_should_not_contain_element(self, locator, message='', loglevel='INFO')
(10)assign_id_to_element(self, locator, id)
(11)element_should_be_disabled(self, locator)
(12)element_should_be_enabled(self, locator)
(13)element_should_be_visible(self, locator, message='')
(14)element_should_not_be_visible(self, locator, message='')
(15)element_text_should_be(self, locator, expected, message='')
(16)get_element_attribute(self, attribute_locator)
(17)get_horizontal_position(self, locator)
(18)get_value(self, locator)
(19)get_text(self, locator)
(20)clear_element_text(self, locator)
(21)get_vertical_position(self, locator)
# Public, mouse input/events
(22)click_element(self, locator)
(23)click_element_at_coordinates(self, locator, xoffset, yoffset)
(24)double_click_element(self, locator)
(25)focus(self, locator)
(26)drag_and_drop(self, source, target)
(27)drag_and_drop_by_offset(self, source, xoffset, yoffset)
(28)mouse_down(self, locator)
(29)mouse_out(self, locator)
(30)mouse_over(self, locator)
(31)mouse_up(self, locator)
(32)open_context_menu(self, locator)
(33)simulate(self, locator, event)
(34)press_key(self, locator, key)
# Public, links
(35)click_link(self, locator)
(36)get_all_links(self)
(37)mouse_down_on_link(self, locator)
(38)page_should_contain_link(self, locator, message='', loglevel='INFO')
(39)page_should_not_contain_link(self, locator, message='', loglevel='INFO')
# Public, images
(40)click_image(self, locator)
(41)mouse_down_on_image(self, locator)
(42)page_should_contain_image(self, locator, message='', loglevel='INFO')
(43)page_should_not_contain_image(self, locator, message='', loglevel='INFO')
(44)get_matching_xpath_count(self, xpath)
(45)xpath_should_match_x_times(self, xpath, expected_xpath_count, message='', loglevel='INFO')
# Private
(46)_element_find(self, locator, first_only, required, tag=None)
返回匹配上的首个元素
(47)_frame_contains(self, locator, text)
(48)_get_text(self, locator)
返回元素的text
(49)_get_value(self, locator, tag=None)
返回元素的value值
(50)_is_enabled(self, locator)
判断元素是否为激活状态
(51)_is_text_present(self, text)
(52)_is_visible(self, locator)
判断元素是否可见
(53)_map_ascii_key_code_to_key(self, key_code)
通过key_code返回对应的key
(54)_parse_attribute_locator(self, attribute_locator)
(55)_is_element_present(self, locator, tag=None)
返回元素是否存在
(56)_page_contains(self, text)
(57)_page_should_contain_element(self, locator, tag, message, loglevel)
(58)_page_should_not_contain_element(self, locator, tag, message, loglevel)
Selenium2Library系列 keywords 之 _ElementKeywords的更多相关文章
- Selenium2Library系列 keywords 之 _SelectElementKeywords 之 unselect_from_list_by_label(self, locator, *labels)
def unselect_from_list_by_label(self, locator, *labels): """Unselects `*labels` from ...
- Selenium2Library系列 keywords 之 _SelectElementKeywords 之 unselect_from_list_by_value(self, locator, *values)
def unselect_from_list_by_value(self, locator, *values): """Unselects `*values` from ...
- Selenium2Library系列 keywords 之 _SelectElementKeywords 之 unselect_from_list_by_index(self, locator, *indexes)
def unselect_from_list_by_index(self, locator, *indexes): """Unselects `*indexes` fro ...
- Selenium2Library系列 keywords 之 _SelectElementKeywords 之 unselect_from_list(self, locator, *items)
def unselect_from_list(self, locator, *items): """Unselects given values from select ...
- Selenium2Library系列 keywords 之 _SelectElementKeywords 之 select_from_list_by_label(self, locator, *labels)
def select_from_list_by_label(self, locator, *labels): """Selects `*labels` from list ...
- Selenium2Library系列 keywords 之 _SelectElementKeywords 之 select_from_list_by_value(self, locator, *values)
def select_from_list_by_value(self, locator, *values): """Selects `*values` from list ...
- Selenium2Library系列 keywords 之 _SelectElementKeywords 之 select_from_list(self, locator, *items)
def select_from_list(self, locator, *items): """Selects `*items` from list identified ...
- Selenium2Library系列 keywords 之 _SelectElementKeywords 之 list_should_have_no_selections(self, locator)
def list_should_have_no_selections(self, locator): """Verifies select list identified ...
- Selenium2Library系列 keywords 之 _SelectElementKeywords 之 list_selection_should_be(self, locator, *items)
def list_selection_should_be(self, locator, *items): """Verifies the selection of sel ...
随机推荐
- Mysql笔记——DDL
数据库模式定义语言DDL(Data Definition Language),是用于描述数据库中要存储的现实世界实体的语言.一个数据库模式包含该数据库中所有实体的描述定义. =========== ...
- 学习了初级的Python
今天傍晚完成了Code Academy上Python的所有练习,感觉Python的原力在我身体里流淌......下面要学习一些进阶的东西.之前Zhi哥跟我说Python比较简单,我还不太信.其实早在四 ...
- jquery ajax json简单的分页,模拟数据,没有封装,只显示原理
简单的分页,模拟数据,没有封装,显示原理,大家有兴趣可以自己封装,这里只是个原理过程,真正的分页也差不多是这个原理,只是请求数据不太一样,html部分: <!TOCTYPE HTML> & ...
- SGU 125 Shtirlits 搜索+可行性剪枝
500ms时限406ms水过…… 直接枚举肯定超时,需要剪枝. 枚举每个格子的元素,检查其左上角和正上方格子是否满足条件,若不满足不必再向下搜索. 在 这里 看到一个更好的方法: 枚举每个格子是哪个相 ...
- xcode解决问题dyld: Library not loaded
一.问题 编译通过,联机调试时,应用启动闪退,XCODE的Output出现提示: dyld: Library not loaded: /System/Library/Frameworks/AdSupp ...
- 【分享】Maven插件的源码下载(SVN)
偶然的情况下找到了Maven插件源码的网址,现分享下 http://svn.apache.org/repos/asf/maven/plugins/ 可以使用SVN下载,在添加新的资源路径时,把上面的网 ...
- 一些数论概念与算法——从SGU261谈起
话说好久没来博客上面写过东西了,之前集训过于辛苦了,但有很大的收获,我觉得有必要把它们拿出来总结分享.之前一直是个数论渣(小学初中没好好念过竞赛的缘故吧),经过一道题目对一些基础算法有了比较深刻的理解 ...
- java基础 (记事本编写hello world,path,classpath,java的注释符)
一:java的基本信息 jre 是指java运行环境,jdk 是指 java 开发工具集(并且里面是自带有jre运行环境的) jvm是指java的虚拟机 java的源代码的后缀名是 .java (例如 ...
- redis接入sentinelPool的配置
package com.netease.mobile.commonUtil; import java.util.ArrayList; import java.util.HashSet; import ...
- Servlet 3.0 之@WebFilter怎么控制多个filter的执行顺序
之前我们控制多个filter的执行顺序是通过web.xml中控制filter的位置来控制的,放在上面的会比放在下面的先执行,如下“用户登录检查过滤器”会比“接口日志过滤器”先执行 <!-- ...