keyword = 'Hotels';
casper.thenOpen('domain.com', function() {
// search for ...
this.fill('form[action="/query"]', { q: 'pizza' }, true);
});
这里如何传递 'keyword' 变量而不是 'pizza' ?
keyword = 'Hotels';
casper.thenOpen('domain.com', function() {
// search for ...
this.fill('form[action="/query"]', { q: 'pizza' }, true);
});
这里如何传递 'keyword' 变量而不是 'pizza' ?