我正在为带有 jquery 自动完成功能的输入字段编写selenium 测试。我有建议使用typeKeys
方法。但它不起作用:
var soda = require('soda')
, assert = require('assert');
var browser = soda.createClient({
host: 'localhost'
, port: 4444
, url: 'http://en.wikipedia.org/wiki/Wikipedia'
, browser: 'firefox'
});
browser.session(function(err){
browser.open('/', function(err, body, res){
browser.typeKeys('searchInput', 'Hello',
function(err, body, res){
// browser.testComplete(function(){
// });
});
});
});
searchInput
字段中没有任何内容。