木偶戏 - 如何提交表格

时间:2017-09-13 07:25:39

标签: javascript node.js google-chrome-headless puppeteer

如何提交表格? 我有一个简单的搜索栏和一个搜索按钮。以下内容输入搜索字符串,但不会触发click事件。当无头设置为假并且我手动点击在serachfield中输入时,搜索正在运行。如何提交按钮?

  const puppeteer = require('puppeteer');

(async () => {
const browser = await puppeteer.launch({headless: false});
const page = await browser.newPage();
await page.goto('http://localhost:3000', {waitUntil: 'networkidle'});

await page.focus('#search');

// Type our query into the search bar
await page.type('michael');

// Submit form
await page.press('Enter');

await page.screenshot({path: './screenshots/search3.png'});

browser.close();
})();

我的搜索栏

search(e) {
 e.preventDefault();
this.props.onClick(this.props.value);}

render() {
return (<form className="form-inline" id="search-form" onSubmit
{this.search}>
  <div className="form-group">
    <input
      type="text"
      className="form-control"
      id="search"
      value={this.props.value}
      placeholder={this.props.placeHolder}
      onChange={this.props.onChange}
    />

    <button primary type="submit" >
      {this.props.buttonText}
    </button>
  </div>
</form>);
}

更新

这不起作用:

const searchForm = await page.$('#search-form'); 
await searchForm.evaluate(searchForm => searchForm.submit()); 

它执行回发并清除表单中的文本,即使它应该使用preventDefault触发函数。

所以问题似乎是这行代码等待

searchForm.evaluate(searchForm => searchForm.submit());

这是有效的:

我将代码更改为:

await page.click('#search-button'); 
await page.waitForNavigation(); 

4 个答案:

答案 0 :(得分:3)

我通过使用它来解决它,而不是提交表单:

await page.click('#search-button'); 
await page.waitForNavigation(); 

答案 1 :(得分:0)

假设您的搜索栏有&#34;搜索&#34;作为其ID,

基本上你需要使用选择器表达式来获取搜索栏的句柄,然后使用evaluate函数来执行表单提交,

您需要使用以下代码段提交表单

const searchForm = await page.$('#search');
await searchForm.evaluate(searchForm => searchForm.submit());

希望这有帮助

答案 2 :(得分:0)

首先关注此链接

puppeteer-how-to-submit-a-form

您的问题

当您按下输入而非截屏时,这就是问题。

// this code just await press event finished, but not form submitted finished,
//in this way, you can not screenshot form submit finished status
await page.press('Enter'); 
await page.screenshot({path: './screenshots/search3.png'});
// form submitting ...

这就是您的代码不起作用的原因。

希望能帮到你

答案 3 :(得分:0)

您可以通过发送以下方式提交表单:
await page.click("button[type=submit]");

<块引用>

在这里找到:https://stackoverflow.com/a/46965168/8839237