如何使用PhantomJS提交表格

Vij*_*ati 161 javascript forms post phantomjs

我正在尝试使用phantomJS(这是一个很棒的工具btw!)为我有登录凭据的页面提交表单,然后将目标页面的内容输出到stdout.我能够使用幻像访问表单并成功设置其值,但我不太确定提交表单和输出后续页面内容的正确语法.到目前为止我所拥有的是:

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();
}
Run Code Online (Sandbox Code Playgroud)

Vij*_*ati 225

我想到了.基本上这是一个异步问题.您不能只提交并期望立即呈现后续页面.您必须等到触发下一页的onLoad事件.我的代码如下:

var page = new WebPage(), testindex = 0, loadInProgress = false;

page.onConsoleMessage = function(msg) {
  console.log(msg);
};

page.onLoadStarted = function() {
  loadInProgress = true;
  console.log("load started");
};

page.onLoadFinished = function() {
  loadInProgress = false;
  console.log("load finished");
};

var steps = [
  function() {
    //Load Login Page
    page.open("https://website.com/theformpage/");
  },
  function() {
    //Enter Credentials
    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";
          arr[i].elements["password"].value="mypassword";
          return;
        }
      }
    });
  }, 
  function() {
    //Login
    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].submit();
          return;
        }
      }

    });
  }, 
  function() {
    // Output content of page to stdout after form has been submitted
    page.evaluate(function() {
      console.log(document.querySelectorAll('html')[0].outerHTML);
    });
  }
];


interval = setInterval(function() {
  if (!loadInProgress && typeof steps[testindex] == "function") {
    console.log("step " + (testindex + 1));
    steps[testindex]();
    testindex++;
  }
  if (typeof steps[testindex] != "function") {
    console.log("test complete!");
    phantom.exit();
  }
}, 50);
Run Code Online (Sandbox Code Playgroud)

  • 这可以通过async.js完成吗? (7认同)
  • 这是一个很棒的模板.以下是我添加的一些内容:在`setInterval`里面使用`var func = steps [testindex]`,然后是`console.log("step"+(testindex + 1)+":"+ funcName(func))` .这允许您向正在执行的步骤添加说明. (3认同)
  • 这真是有用的帖子.但有一个问题.使用POST提交表单时,数据将发送到服务器,服务器将返回响应.您处理此响应的代码在哪里,或者由phantomjs自动完成?此外,在表单submition之后,服务器可以返回`COOKIE`,我的问题是:_*当服务器返回响应*_时,这个cookie在`phantom.cookies`对象中可用吗? (2认同)

arb*_*oc7 62

此外,CasperJS为PhantomJS中的导航提供了一个很好的高级界面,包括点击链接和填写表格.

CasperJS

更新以添加比较PhantomJS和CasperJS的2015年7月28日文章.

(感谢M先生的评论者!)

  • @ user984003您应该能够将您的选择器设置为`#someid`以根据ID填写. (4认同)
  • 任何使用PhantomJS的人都应该开始使用CasperJS.这里是帖子描述原因:http://code-epicenter.com/why-is-casperjs-better-than-phantomjs/ (3认同)
  • CasperJS是天赐之物!它使得ASPX页面变得轻而易举.谢谢! (2认同)

Jak*_* M. 19

发送原始POST请求有时可能更方便.您可以在下面看到PhantomJS的post.js原始示例

// Example using HTTP POST operation

var page = require('webpage').create(),
    server = 'http://posttestserver.com/post.php?dump',
    data = 'universe=expanding&answer=42';

page.open(server, 'post', data, function (status) {
    if (status !== 'success') {
        console.log('Unable to post!');
    } else {
        console.log(page.content);
    }
    phantom.exit();
});
Run Code Online (Sandbox Code Playgroud)

  • 请注意,读者,执行"GET"请求的方式类似(通过执行类似`page.open(服务器,'获取',数据,......)的操作将无效. (6认同)

小智 7

如上所述,CasperJS是填写和发送表单的最佳工具.有关如何使用fill()函数填充和提交表单的最简单示例:

casper.start("http://example.com/login", function() {
//searches and fills the form with id="loginForm"
  this.fill('form#loginForm', {
    'login':    'admin',
    'password':    '12345678'
   }, true);
  this.evaluate(function(){
    //trigger click event on submit button
    document.querySelector('input[type="submit"]').click();
  });
});
Run Code Online (Sandbox Code Playgroud)