を持っている私は、Drupalの7にCasperJSは、フォームに入力 - 入力名が角括弧
を提出しようとして入力された名前は、以下のように角括弧を持っています
<textarea class="text-full form-textarea" id="edit-body-und-0-value" name="body[und][0][value]" cols="60" rows="4"></textarea>
私は標準的な方法を使用しようとしています:
casper.waitForSelector("form input[name='title']", function() {
this.fillSelectors('form#post-node-form', {
'input[name = title ]': 'White title here',
'input[name = body[und][0][value] ]': 'Write body content here'
}, true);
});
しかし、それはエラーを返す:
FAIL Errors encountered while filling form: no field matching css selector "input[name = body[und][0][value] ]" in form
\
を使用してエスケープしようとしましたが、まだ動作しません。
与えられた回答のいずれかがあなたの問題を解決した場合は、[受け入れること](http://meta.stackexchange.com/q/5234/266187)それらの1つ。それができなかったら、間違っているものを広げてください。 –