博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Selenium2Library系列 keywords 之 _SelectElementKeywords 之 unselect_from_list(self, locator, *items)...
阅读量:6293 次
发布时间:2019-06-22

本文共 1371 字,大约阅读时间需要 4 分钟。

1     def unselect_from_list(self, locator, *items): 2         """Unselects given values from select list identified by locator. 3  4         As a special case, giving empty list as `*items` will remove all 5         selections. 6  7         *items try to unselect by value AND by label. 8  9         It's faster to use 'by index/value/label' functions.10 11         Select list keywords work on both lists and combo boxes. Key attributes for12         select lists are `id` and `name`. See `introduction` for details about13         locating elements.14         """15         items_str = items and "option(s) '%s'" % ", ".join(items) or "all options"16         self._info("Unselecting %s from list '%s'." % (items_str, locator))17 18         select = self._get_select_list(locator)19         if not select.is_multiple:20             raise RuntimeError("Keyword 'Unselect from list' works only for multiselect lists.")21 22         if not items:23             select.deselect_all()24             return25 26         select, options = self._get_select_list_options(select)27         for item in items:28             select.deselect_by_value(item)29             select.deselect_by_visible_text(item)

方法名:unselect_from_list(self, locator, *items)

相似方法:

公共方法 移除所给items的选中状态

接收参数:locator,*labels/*values

18行:使用方法,返回Select对象

 

转载于:https://www.cnblogs.com/loveok-56/p/4464317.html

你可能感兴趣的文章
sbin/hadoop-daemon.sh: line 165: /tmp/hadoop-hxsyl-journalnode.pid: Permission denied
查看>>
@RequestMapping 用法详解之地址映射
查看>>
254页PPT!这是一份写给NLP研究者的编程指南
查看>>
《Data Warehouse in Action》
查看>>
String 源码浅析(一)
查看>>
Spring Boot 最佳实践(三)模板引擎FreeMarker集成
查看>>
Fescar 发布 0.2.3 版本,支持 Redis 和 Apollo
查看>>
Google MapReduce到底解决什么问题?
查看>>
CCNP-6 OSPF试验2(BSCI)
查看>>
Excel 2013 全新的图表体验
查看>>
openstack 制作大于2TB根分区自动扩容的CENTOS镜像
查看>>
Unbuntu安装遭遇 vmware上的Easy install模式
查看>>
几个常用的ASP木马
查看>>
python分析postfix邮件日志的状态
查看>>
Mysql-5.6.x多实例配置
查看>>
psutil
查看>>
在git@osc上托管自己的代码
查看>>
机器学习算法:朴素贝叶斯
查看>>
小五思科技术学习笔记之扩展访问列表
查看>>
使用Python脚本检验文件系统数据完整性
查看>>