| __init__.py |
|
0 |
- |
| conftest.py |
|
67 |
- |
| pointer_mouse.py |
<button>click to hide</button>
<script type="text/javascript">
const btn = document.querySelector('button');
btn.addEventListener('click', ev => {
window.parent.postMessage("test");
});
</script>
|
1565 |
- |
| pointer_scaling.py |
<script>
var allEvents = { events: [] };
window.addEventListener("mousemove", event => {
allEvents.events.push({
"type": event.type,
"pageX": event.pageX,
"pageY": event.pageY,
});
}, { once: true });
</script>
|
1497 |
- |
| privileged.py |
Override the fixture of the same name from the upstream "perform_actions"
conftest. It always uses the "session" fixture, which is not used by all the
tests below, and releasing actions is refused for a privileged page. |
2306 |
- |
| wheel.py |
|
750 |
- |