我写了一些PhantomJS应用程序的一些部分.我在一个正在使用用户名和密码的网站进行解析.之后,我必须点击链接.而我得到这个错误:
TypeError: 'undefined' is not a function (evaluating 'myLink.click()') phantomjs://webpage.evaluate():11 phantomjs://webpage.evaluate():22 phantomjs://webpage.evaluate():22
这是我的PhantomJS代码:
if(document.getElementById("m_Content_submitbtn2").getAttribute('data-role') == "button"){ var myLink = document.getElementById("m_Content_submitbtn2"); myLink.click(); }
这是我的链接:
<div class='button'><a href="#" data-role="button" tabindex='0' onclick='WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("m$Content$submitbtn2","",true,false,true)); return false;' id="m_Content_submitbtn2">Log ind</a></div>