3

I want to fill a form then press a specific button. Is it possible to choose the button using casper.fill method?

4

1 に答える 1

6

メソッドを直接使用するのではなく、次のfill()方法を使用しclick()ます。

HTML:

<form name="plop">
    <input type="text" name="q">
    <input type="submit" name="foo" value="Foo!">
    <input type="submit" name="bar" value="Bar!">
</form>

キャスパー スクリプト:

// casperjs script
casper.fill('form[name="plop"]', {
    q: 'yeah',
});
casper.click('input[type="submit"][name="bar"]');
于 2013-02-20T23:42:59.917 に答える