环境
我正在为网站编写插件。它将通过插件的 CSS 向 DOM 添加元素。我希望样式仅限于插件,即一旦插件包含在网页上,插件之外的任何元素都不应改变其外观。
我正在使用 cypress 运行集成测试。当插件包含在页面上时,如何断言所有预先存在的元素的样式保持不变?我可以在插件加载前后访问该页面。
方法
这是我认为应该起作用的:
cy.visit('theURL');
getStyles().then(oldStyles => { // Get the styles of the elements
mountPlugin(); // Mount the plugin (including CSS)
getStyles().then(newStyles => { // Get the (possibly changed) styles
newStyles.forEach((newStyle, i) => // Compare each element’s style after
expect(newStyle).to.equal(oldStyles[i]) //+ mounting to the state before mounting
);
});
});
function getStyles() {
return cy.get('.el-on-the-page *').then((elements) => { // Get all elements below a certain root
const styles: CSSStyleDeclaration[] = []
elements.each((_, el) => { // Get each element’s style
styles.push(window.getComputedStyle(el)); //+ and put them it an array
});
return styles; // Return the styles
});
}
问题
CSSStyleDeclaration 中的数字键
该行expect(newStyle).to.equal(oldStyles[i])
失败,因为oldStyles[i]
包含仅列出属性名称的数字键。例如,
// oldStyles[i] for some i
{
cssText: "animation-delay: 0s; animation-direction: normal; […more]"
length: 281
parentRule: null
cssFloat: "none"
0: "animation-delay" // <-- These elements only list property names, not values
... //+
280: "line-break" //+
alignContent: "normal" // <-- Only here there are actual property values
... //+
zoom: "1" //+
...
}
解决方法
我通过手动循环遍历 CSS 键并检查键是否为数字来解决此问题。但是,这些数字键只出现在 中oldStyles
,而不出现在 中newStyles
。我写这个是因为这对我来说看起来很可疑,并且我认为错误可能已经存在。
// Instead of newStyles.foreach(…) in the first snippet
newStyles.forEach((newStyle, i) => {
for (const key in newStyle) {
if(isNaN(Number(key))) {
expect(newStyle[key]).to.equal(oldStyles[i][key]);
}
}
});
空属性值
我在这里做出隐含的假设,即 DOM 已实际加载并已应用样式。根据我的理解getLinkListStyles
,cy.get
应该安排在cy.visit
等待窗口触发load
事件之后才运行。
从赛普拉斯文档:
cy.visit()
当远程页面触发其load
事件时解析。
但是,使用上述解决方法后,我在oldStyles
. 例如:
//oldStyles[i] for some i
{
cssText: "animation-delay: ; animation-direction: ; animation-duration: ; […more]"
length: 0
parentRule: null
cssFloat: ""
alignContent: ""
...
}
尝试的解决方案
请注意,当我显式使用带有 的回调时,此行为不会改变cy.visit
,即:
cy.visit(Cypress.env('theURL')).then(()=>{
getStyles().then((oldStyles) => {
// (rest as above)
cy.wait(15000)
开头也没有getStyles()
:
function getStyles() {
cy.wait(15000); // The page has definitely loaded and applied all styles by now
cy.get('.el-on-the-page *').then((elements) => {
...