mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-15 14:11:50 +03:00
11 lines
258 B
HTML
11 lines
258 B
HTML
|
<!DOCTYPE html>
|
||
|
<button>increment</button>
|
||
|
<h1>count: 0</h1>
|
||
|
<script>
|
||
|
window.count = 0;
|
||
|
document.querySelector('button').addEventListener('click', () => {
|
||
|
++window.count;
|
||
|
document.querySelector('h1').textContent = `count: ${window.count}`;
|
||
|
});
|
||
|
</script>
|