Selenium2Library系列 keywords 之 _SelectElementKeywords 之 unselect_from_list_by_label(self, locator, *l...

本文介绍了一个Python方法,用于从指定位置选择的列表中取消选定的标签。适用于选择列表和组合框,支持多选,并通过直观的代码示例展示了其用法。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

 1     def unselect_from_list_by_label(self, locator, *labels):
 2         """Unselects `*labels` from list identified by `locator`
 3 
 4         Select list keywords work on both lists and combo boxes. Key attributes for
 5         select lists are `id` and `name`. See `introduction` for details about
 6         locating elements.
 7         """
 8         if not labels:
 9             raise ValueError("No value given.")
10         items_str = "label(s) '%s'" % ", ".join(labels)
11         self._info("Unselecting %s from list '%s'." % (items_str, locator))
12 
13         select = self._get_select_list(locator)
14         if not select.is_multiple:
15             raise RuntimeError("Keyword 'Unselect from list' works only for multiselect lists.")
16 
17         for label in labels:
18             select.deselect_by_visible_text(label)

方法名:unselect_from_list_by_label(self, locator, *labels)

相似方法:

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

接收参数:locator,labels

13行:使用_get_select_list(self, locator)方法,返回Select对象

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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值