我需要在选择字段中选择选项。我有执行此操作的代码,但是有一件事。单击选择并选择适当的选项后,出现按钮。我的代码选择了该选项,但没有出现按钮。我正在致力于一个网站的自动化。我试图找到单击选择字段的方法,但是没有一个解决方案起作用。以及document.getelementbyid.click()。感谢任何提示。
function robber(){
var final = 0
var dropDown = document.querySelectorAll("select[id='singlerobbery-select-robbery'] option");
dropDown.forEach((opcja) =>{
if (opcja.innerText.includes("100")){
final++;
}
});
var choose_rob = document.querySelector("select[id='singlerobbery-select-robbery']").selectedIndex = final;
document.querySelector("button[class='btn btn-inverse']").click(); // this is the button I need to click afterwards
};
答案 0 :(得分:0)
为回答我自己的问题表示歉意,但是由于有很多回复,我决定将其总结为新文章。我想做的是从选择菜单中选择选项,然后单击按钮。 Screen shoot what I need to obtain
我上面的代码替换了select中的内容,但是要获取此按钮,我必须单击select字段以使其弹出。