chromedp/testdata/visible.html

23 lines
469 B
HTML
Raw Normal View History

2017-01-24 15:09:23 +00:00
<!doctype html>
<html>
<head>
<title>example</title>
</head>
<body>
<div id="box1" style="display:none">
<div id="box2">
<p>box2</p>
</div>
</div>
<div id="box3">
<h2>box3</h3>
<p id="box4">
box4 text
<input id="input1" value="some value"><br><br>
<textarea id="textarea1" style="width:500px;height:400px">textarea</textarea><br><br>
<input id="input2" type="submit" value="Next">
</p>
</div>
</body>
</html>