在Selenium中发出POST请求而不填写表单

使用selenium,您可以执行任意Javascript,包括以程式提交表单.

使用Selenium Java最简单的JS执行:

if (driver instanceof JavascriptExecutor) {
    ((JavascriptExecutor) driver).executeScript("alert('hello world');");
}

并使用Javascript,您可以创建发布请求,设置所需的参数和HTTP标头并提交.

var xhr = new XMLHttpRequest();
xhr.open('POST', 'http://domain.com', true);
xhr.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
xhr.onload = function () {
    alert(this.responseText);
};

xhr.send('login=test&password=test');

|

你可能感兴趣的:(在Selenium中发出POST请求而不填写表单)