gpt4 book ai didi

css - 等待 CSS 属性

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

我在 Testcafe session 中检查 CSS 属性时遇到问题。我在网站上有一个带有 html 的进度条:

<div class="progress-bar progress-bar-success"></div>

当操作就绪后,这个进度ba变成了100%的宽度。

<div class="progress-bar progress-bar-success" style="width: 100%;"></div>

在我的代码中,我现在使用这条线

await t.expect(Selector('.progress-bar.progress-bar-success').getStyleProperty('width')).eql('100%', {timeout: 90000})

但它不会起作用。它一直等待直到等待时间结束。

我在另一次运行中使用了类似的函数,等待使用 CSS 和 RGB 更改元素的颜色,这非常有效。我认为现在的问题是,该样式在启动时不可用。或者还有其他的可能吗?

最佳答案

出现此问题是因为根据 docs getStyleProperty 方法返回宽度的计算值,这意味着该值以像素为单位返回,而您想要检查以百分比为单位的值。

作为解决方案,我建议您使用 ClientFunctions机制,让您获得想要的值(value)。

我为你准备了一个样本:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
.bar {
width: 500px;
height: 50px;
border: 1px solid black;
overflow: hidden;
}

.progress {
height: 100%;
background-color: black;
}
</style>
</head>
<body>
<div class="bar">
<div class="progress" style="width: 0;"></div>
</div>

<script>
setInterval(function () {
var progress = document.querySelector('.progress');

progress.style.width = Math.min(100, parseInt(progress.style.width) + 1) + '%';
}, 50);
</script>
</body>
</html>

这是测试代码:

import { Selector, ClientFunction } from 'testcafe';

fixture `progress`
.page `index.html`;

const getStyleWidthInPercents = ClientFunction(() => {
return document.querySelector('.progress').style.width;
});

test('progress', async t => {
await t.expect(getStyleWidthInPercents()).eql('100%', {timeout: 90000})
});

关于css - 等待 CSS 属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58373482/

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