PhantomJS点击网页上的链接(PhantomJS click a link on a page

2019-07-04 02:42发布

我已经写了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(&quot;m$Content$submitbtn2&quot;, &quot;&quot;, true, &quot;&quot;, &quot;&quot;, false, true)); return false;' id="m_Content_submitbtn2">Log ind</a></div>&nbsp;

Answer 1:

您正在尝试使用click()方法的上<a>未在默认情况下,所有的浏览器支持的元素。 而是尝试使用像这样在那里,而不是myLink.click(); 你将不得不做eventFire(myLink, 'click');



Answer 2:

或包括jQuery和这样做:

var page = require('webpage').create();
page.open('http://www.sample.com', function() {
  page.includeJs("http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js", function() {
    page.evaluate(function() {
      $("button").click();
    });
    phantom.exit()
  });
});


文章来源: PhantomJS click a link on a page