casperjs 中的目标 jsp 表单
Target jsp form in casperjs
Casperjs 快速入门google 搜索代码:
this.fill('form[action="/search"]', { q: 'google search' }, true);
如何在 casperjs 中定位此表单?
您需要使用fillSelectors()函数:
this.fillSelectors('form#frm_one', {q: 'google search'}, true);
Casperjs 快速入门google 搜索代码:
this.fill('form[action="/search"]', { q: 'google search' }, true);
如何在 casperjs 中定位此表单?
您需要使用fillSelectors()函数:
this.fillSelectors('form#frm_one', {q: 'google search'}, true);