@revoloo/cypress6
Version:
Cypress.io end to end testing tool
33 lines (32 loc) • 836 B
HTML
<html>
<head>
<title>Command Log</title>
<style>
body {
height: 5000px;
}
</style>
</head>
<body>
<button>button</button>
<div class="test">Hello World</div>
<div class="warning">Don't do this</div>
<form>
<input id="a" />
<input type="checkbox" id="checkbox" value="good" />
<input id="b" type="button" />
<input id="c" style="display: none" />
<select id="fruits">
<option value="456">apples</option>
<option value="457">oranges</option>
<option value="458">bananas</option>
</select>
<select id="auto-test" multiple>
<option value="456">Jest</option>
<option value="457">Cypress</option>
<option value="458">Storybook</option>
</select>
</form>
</body>
</html>