@revoloo/cypress6
Version:
Cypress.io end to end testing tool
48 lines (46 loc) • 937 B
HTML
<html>
<head>
<title>Screenshots Fixture</title>
<style>
* {
box-sizing: border-box;
}
body {
margin: 0;
}
div {
border: solid 1px black;
margin: 20px;
}
.empty-element {
height: 0px;
width: 0px;
border: 0px;
margin: 0px;
}
.short-element {
height: 100px;
margin-left: 40px;
width: 200px;
}
.tall-element {
height: 320px;
background: linear-gradient(red, yellow, blue);
}
.multiple {
border: none;
margin: 0;
}
</style>
</head>
<body>
<div class="empty-element"></div>
<div class="short-element"></div>
<div class="tall-element"></div>
<div class="multiple"></div>
<div class="multiple"></div>
<div class="multiple"></div>
<div class="multiple"></div>
</body>
</html>