gpt4 book ai didi

Angular 7 : Unit test Jasmine automate window size on mobile and web

转载 作者:行者123 更新时间:2023-12-02 17:16:59 25 4
gpt4 key购买 nike

我需要编写一个自动化测试用例( Jasmine 测试),它将在 chrome 中运行,针对移动和 Web View 具有不同的分辨率例如,它应该自动调整窗口大小在 jasmine 中运行时 W: 375 H: 678不幸的是,我无法找到解决方案来做到这一点

it('It should set sizes according to mobile', async(() => {

//below code is not working
//browser.manage().window().setSize(375, 678);
let innerHeight = window.innerHeight;
neither it won't work following code
window.resizeTo(375, 678);

}));

最佳答案

终于我找到了这个问题的答案

可以通过安装npm install karma-viewport来完成

这将向测试公开全局变量视口(viewport),从而允许设置视口(viewport)的尺寸

需要在 karma.conf.js 中配置视口(viewport)大小,如下

// karma.conf.js
module.exports = function(config) {
config.set({
frameworks: ["viewport"]

// Viewport configuration
viewport: {
breakpoints: [
{
name: "mobile",
size: {
width: 320,
height: 480
}
},
{
name: "tablet",
size: {
width: 768,
height: 1024
}
},
{
name: "screen",
size: {
width: 1440,
height: 900
}
}
]
}
})
}

然后在规范文件中您可以访问屏幕尺寸

 it('should load the mobile view ', () => {
viewport.set('mobile');
});

关于 Angular 7 : Unit test Jasmine automate window size on mobile and web,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56003138/

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