有什么方法可以使用 Nightmare (nodeJS模块)按箭头键吗?通过将键发送到特定元素还是通过单击该元素,然后将按键发送到整个页面?
我的问题是,有一个下拉菜单,单击该菜单时会在其下方显示一些选项。这些选项似乎不可点击,我尝试过单击,甚至使用realClick Nightmare 扩展程序。似乎都无法选择下拉菜单的任何元素。在浏览页面时,我发现通过使用箭头键和Enter键,无需单击即可选择选项。那么有没有办法将按键事件发送给 Electron 呢?是通过 Nightmare 还是直接接触 Electron ?
最佳答案
它称为自动完成菜单,没有标准的操作方法。
我尝试与Google合作,并提出了一种方法。我认为,要制定通用解决方案将很困难,因为这取决于实现自动完成的方式。希望这可以帮助!
var Nightmare = require('nightmare');
var nightmare = Nightmare({
show: true,
webPreferences: {}
})
nightmare
.goto('http://www.google.co.in')
.evaluate(function(searchTerm) {
var elem = document.querySelector('#lst-ib');
elem.value = searchTerm;
//Do mousedown to initiate auto complete window
var event = document.createEvent('MouseEvent');
event.initEvent('mousedown', true, true);
elem.dispatchEvent(event);
}, 'Leo')
.then(function() {
//Wait for results to appear
nightmare.wait(1000)
.evaluate(function() {
//Click the first option of List
var first = document.querySelector('#sbtc > div.gstl_0.sbdd_a > div:nth-child(2) > div.sbdd_b > div > ul > li:nth-child(1)');
first.firstElementChild.click();
}).then(function() {
console.log('All Done');
});
});
关于node.js - 如何使用 Nightmare 按箭头键?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44725484/