首页
学习
活动
专区
工具
TVP
发布
社区首页 >问答首页 >如何使用PhantomJS提交表单

如何使用PhantomJS提交表单
EN

Stack Overflow用户
提问于 2012-02-12 12:23:30
回答 4查看 125.9K关注 0票数 161

我正在尝试使用phantomJS (顺便说一句,这是一个多么棒的工具!)为我拥有登录凭据的页面提交表单,然后将目标页面的内容输出到stdout。我可以使用phantom成功地访问表单并设置它的值,但是我不太确定提交表单并输出后续页面内容的正确语法。到目前为止,我所拥有的是:

代码语言:javascript
复制
var page = new WebPage();
var url = phantom.args[0];

page.open(url, function (status) {

  if (status !== 'success') {
      console.log('Unable to access network');
  } else {

    console.log(page.evaluate(function () {

      var arr = document.getElementsByClassName("login-form");
      var i;

      for (i=0; i < arr.length; i++) {

        if (arr[i].getAttribute('method') == "POST") {
          arr[i].elements["email"].value="mylogin@somedomain.com";
          arr[i].elements["password"].value="mypassword";

          // This part doesn't seem to work. It returns the content
          // of the current page, not the content of the page after 
          // the submit has been executed. Am I correctly instrumenting
          // the submit in Phantom?
          arr[i].submit();
          return document.querySelectorAll('html')[0].outerHTML;
        }

      }

      return "failed :-(";

    }));
  }

  phantom.exit();
}
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/9246438

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档