File: button.html

package info (click to toggle)
python-playwright 1.55.0%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,728 kB
  • sloc: python: 53,655; javascript: 383; sh: 216; makefile: 6
file content (32 lines) | stat: -rw-r--r-- 862 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html>
  <head>
    <title>Button test</title>
  </head>
  <body>
    <script src="mouse-helper.js"></script>
    <button>Click target</button>
    <script>
      window.result = 'Was not clicked';
      window.offsetX = undefined;
      window.offsetY = undefined;
      window.pageX = undefined;
      window.pageY = undefined;
      window.shiftKey = undefined;
      window.pageX = undefined;
      window.pageY = undefined;
      window.bubbles = undefined;
      document.querySelector('button').addEventListener('click', e => {
        result = 'Clicked';
        offsetX = e.offsetX;
        offsetY = e.offsetY;
        pageX = e.pageX;
        pageY = e.pageY;
        shiftKey = e.shiftKey;
        bubbles = e.bubbles;
        cancelable = e.cancelable;
        composed = e.composed;
      }, false);
    </script>
  </body>
</html>