如何从下拉选择中选择一个选项

如何从下拉选择中选择一个选项

本文介绍了如何从下拉选择中选择一个选项的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我可以点击选择器,但我的问题是如何从下拉列表中选择一个选项?

I can click the selector but my question is how to select one of the options from the dropdown list?

await page.click('#telCountryInput > option:nth-child(4)')

单击使用 CSS 选择器的选项不起作用.

Click the option using CSS selector does not work.

例如,从如下列表中选择一个国家/地区代码:

For example, select a country code from a list like below:

推荐答案

Puppeteer v0.13.0 有 page.select() 方法,正是这样做的.你只需要给它选择的值.因此,假设您的 中有一个 :

Puppeteer v0.13.0 has page.select() method, which does exactly that. You just have to give it the value to select. So, assuming you have an <option value="my-value"> in your <select>:

await page.select('#telCountryInput', 'my-value')

这篇关于如何从下拉选择中选择一个选项的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-13 13:27