gpt4 book ai didi

testing - 测试 Ember.js 应用程序时如何模拟后退按钮?

转载 作者:行者123 更新时间:2023-11-28 19:42:30 30 4
gpt4 key购买 nike

在我的验收测试中,我想模拟后退按钮点击和结果转换。

我有以下内容,但我觉得它不对。

test("back to search page", function(){
visit('/')
.then(function(){
return fillIn('.search input', 'hi');
})
.then(function(){
return click('.search button');
})
.then(function(){
// I want to go back here
return visit('/');
})
.then(function(){
var keyword = find('.search input').val();
equal(keyword, '');
ok(!exists('.search .results'));
});
})

在测试中模拟后退按钮的正确方法是什么?

最佳答案

window.history.back()window.history.go(-1)

关于testing - 测试 Ember.js 应用程序时如何模拟后退按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18927817/

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