UNPKG
@puppedo/atoms
Version:
latest (6.1.1)
6.1.1
6.1.0
6.0.0
5.7.3
5.7.2
5.7.1
5.7.0
5.6.1
5.6.0
5.5.1
5.5.0
5.4.9
5.4.8
5.4.7
5.4.6
5.4.5
5.4.4
5.4.3
5.4.2
5.4.1
5.4.0
5.3.6
5.3.5
5.3.4
5.3.3
5.3.2
5.3.1
5.3.0
5.2.1
5.2.0
5.1.0
5.0.5
5.0.4
5.0.3
5.0.2
5.0.1
5.0.0
5.0.0-beta.1
5.0.0-beta
4.0.6
4.0.5
4.0.4
4.0.3
4.0.2
4.0.1
4.0.0
3.6.1
3.6.0
3.5.2
3.5.1
3.5.0
3.4.1
3.4.0
3.3.5
3.3.4
3.3.3
3.3.2
3.3.1
3.3.0
3.2.0
3.1.1
3.1.0
3.0.0
2.0.23
2.0.22
2.0.21
2.0.20
2.0.19
2.0.18
2.0.17
2.0.16
2.0.15
2.0.14
2.0.13
2.0.12
2.0.11
2.0.10
2.0.9
2.0.8
2.0.7
2.0.6
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
1.5.0
1.4.7
1.4.6
1.4.5
1.4.4
1.4.3
1.4.2
1.4.1
1.4.0
1.3.0
1.2.2
1.2.1
1.2.0
1.1.2
1.1.1
1.1.0
1.0.1
1.0.0
Atoms for PuppeDo
github.com/starikan/PuppeDoAtoms
starikan/PuppeDoAtoms
@puppedo/atoms
/
src
/
mouse
/
mouseClick.js
8 lines
(6 loc)
•
215 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
module
.
exports
=
async
function
atomRun
(
) {
const
{ X, Y } =
this
.
data
;
const
mouse =
this
.
page
.
mouse
;
await
mouse.
click
(X, Y);
await
this
.
log
({
text
:
`Mouse click in coords: X = '
${X}
', Y = '
${Y}
'`
}); };