软件测试|web自动化测试神器playwright教程(十四)
【摘要】 前言我们在日常工作中,经常会遇到下面的情况,我们需要在一个下拉框中选择一个选项:在使用selenium定位的过程中,我们可以选择使用selenium的Select类,有了playwright,我们的操作会变得更简单一些。playwright也提供了select的方法进行操作。 select 用法使用locator.select_option()选择元素中的一个或多个选项。我们可以指定选项v...
前言
我们在日常工作中,经常会遇到下面的情况,我们需要在一个下拉框中选择一个选项:
在使用selenium定位的过程中,我们可以选择使用selenium的Select类,有了playwright,我们的操作会变得更简单一些。
playwright也提供了select的方法进行操作。
select 用法
使用locator.select_option()选择元素中的一个或多个选项。我们可以指定选项value,或label选择并且可以选择多个选项。示例如下:
# Single selection matching the value
page.get_by_label('Choose a color').select_option('blue')
# Single selection matching the label
page.get_by_label('Choose a color').select_option(label='Blue')
# Multiple selected items
page.get_by_label('Choose multiple colors').select_option(['red', 'green', 'blue'])
select 元素示例:
<select multiple>
<option value="toyota">Japan</div>
<option value="volkswagen">Germany</div>
<option value="byd">China</div>
</select>
代码如下:
# single selection matching the value or label
element.select_option("toyota")
# single selection matching the label
element.select_option(label="Germany")
# multiple selection for toyota, volkswagen and second option
element.select_option(value=["toyota", "volkswagen", "byd"])
使用
从option 中选一个
示例代码:
- 方法一,先定位select元素,再定位选项
- 根据选项名称定位
select = page.get_by_label("s2Id")
select.select_option("o1")
- 根据index 索引定位
select = page.get_by_label("s2Id")
select.select_option(index=1)
- 根据label 标签定位
页面如下:
<select name="test" id="t" onchange="change(this)" >
<option value="1" label="第一" selected="selected">first</option>
<option value="2" label="第二">second</option>
<option value="3" label="第三">third</option>
<option value="4" label="第四">forth</option>
</select>
代码如下:
select = page.get_by_label("选择:")
select.select_option(label="forth")
总结
本文主要介绍了playwright对下拉框的处理,playwright的下拉框处理相对于selenium来说,更加方便,不需要再额外导入其他函数即可完成,定位也非常简单。
【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)