我有以下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: