我使用chrome来检查Bing图像搜索的下一个按钮的元素,步骤是
以下是由chrome检查的结果
我试试下面的javascript,但没有一个工作
//error message : document.getElementsByClassName(...).click is not a function
document.getElementsByClassName("iv_button").click()
//error message : Cannot read property 'click' of undefined
document.getElementsByClassName("iv_button")[0].click()
//error message : Cannot read property 'click' of undefined
document.getElementsByClassName("iv_button")[1].click()
//error message : Cannot read property 'click' of null
document.getElementById("iol_navr").click()
我怎么能进入下一页(使用Bing api除外)?
编辑:正如提到的omegastripes,document.getElementById(" iol_navr")。click()工作。它对我的情况不起作用,因为我的页面的html内容没有更新。