Puppeteer-具有多个选择器的选择元素

问题描述 投票:0回答:2

我有以下html:

<html>

<body>
    <div title="test" class="test">hello</div>
    <input onclick="" type="confusepuppet" value="google" class="button">
    <form action="http://yahoo.com">
        <input onclick="" type="submit" value="yahoo" class="button">
    </form>
    <form action="http://google.com">
        <input onclick="" type="submit" value="google" class="button">
    </form>


</body>

</html>

并且假设我想单击按钮以重定向到google.com,我不能使用value =“ google”或type =“ submit”,我必须同时使用value =“ google”和type =“ submit”以避免单击错误的按钮。

我如何在操纵up的角色中做到这一点?

这不起作用:

await page.click('input [value =“ google”,type =“ submit”]')] >>

我有以下html:

你好 &...
javascript jquery html selector puppeteer
2个回答
1
投票

多值选择器:


0
投票

您可以使用attribute selector

© www.soinside.com 2019 - 2024. All rights reserved.