mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
15 lines
285 B
HTML
15 lines
285 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Button test</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<button onclick="clicked();">Click target</button>
|
||
|
<script>
|
||
|
window.result = 'Was not clicked';
|
||
|
function clicked() {
|
||
|
result = 'Clicked';
|
||
|
}
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|