gpt4 book ai didi

javascript - 使用 Phantomjs 测试 AngularJS

转载 作者:行者123 更新时间:2023-11-30 17:13:44 25 4
gpt4 key购买 nike

我正在尝试使用 PhantomJS 测试 AngularJS 教程 ( http://angular.github.io/angular-phonecat/step-7/app )。我无法输入要实际运行的搜索。

这是我目前的情况:

var page = new WebPage();
page.open('http://angular.github.io/angular-phonecat/step-7/app', function() {
page.includeJs("http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js", function() {
page.evaluate(function() {
$("[ng-model=query]").click();
$("[ng-model=query]").focus();
$("[ng-model=query]").val("xoom");
console.log($('ul.phones').text());
});
phantom.exit()
});
});

最佳答案

当直接更改输入值时,绑定(bind)似乎不起作用。您需要使用 PhantomJS 的原生输入法 sendEvent .

page.open('http://angular.github.io/angular-phonecat/step-7/app', function() {
page.evaluate(function() {
document.querySelector('[ng-model=query]').focus();
});
page.sendEvent("keypress", "xoom");
page.evaluate(function() {
console.log(document.querySelectorAll('ul.phones li').length + " products");
});
phantom.exit();
});

关于javascript - 使用 Phantomjs 测试 AngularJS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26494826/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com