puppeteer/test/assets/playground.html
JoelEinbinder 117a128b42 Introduce Page.$ and Page.$$ (#75)
This patch introduces Page.$ and Page.$$ methods which are
aliases for `document.querySelector` and `document.querySelectorAll`. 

Fixes #78.
2017-07-17 18:56:56 -07:00

15 lines
299 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Playground</title>
</head>
<body>
<button>A button</button>
<textarea>A text area</textarea>
<div id="first">First div</div>
<div id="second">
Second div
<span class="inner">Inner span</span>
</div>
</body>
</html>