ฉันพยายามใช้ phantomJS (เป็นเครื่องมือที่ยอดเยี่ยม btw!) เพื่อส่งแบบฟอร์มสำหรับหน้าเว็บที่ฉันมีข้อมูลประจำตัวสำหรับเข้าสู่ระบบจากนั้นส่งออกเนื้อหาของหน้าปลายทางไปยัง stdout ฉันสามารถเข้าถึงฟอร์มและตั้งค่าเรียบร้อยแล้วโดยใช้ phantom แต่ฉันไม่แน่ใจว่าสิ่งที่ไวยากรณ์ที่ถูกต้องคือการส่งแบบฟอร์มและส่งออกเนื้อหาของหน้าถัดไป สิ่งที่ฉันมีอยู่คือ:
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();
}
setInterval
การใช้งานแล้วvar func = steps[testindex]
console.log("step " + (testindex + 1) + ": " + funcName(func))
สิ่งนี้อนุญาตให้คุณเพิ่มคำอธิบายลงในขั้นตอนที่กำลังดำเนินการ