test(argos): fix Argos visual tests flakiness, hide docs last-update element (#9219)

This commit is contained in:
Sébastien Lorber 2023-08-11 15:30:20 +02:00 committed by GitHub
parent 19ee437f64
commit 4aef958a99
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,14 +6,21 @@
*/
/*
Things to hide in Argos screenshots because it's source of flakiness
Hide some things in Argos screenshots because they are a source of flakiness
*/
iframe,
article.yt-lite,
.theme-last-updated,
.avatar__photo,
img[src$='.gif'],
h2#using-jsx-markup ~ div > div[class*='browserWindowBody']:has(b),
[class*='playgroundPreview'] {
visibility: hidden;
}
/*
Different docs last-update dates can alter layout
"visibility: hidden" is not enough
*/
.theme-last-updated {
display: none;
}