Can Automa handle dialog box? #184
Answered
by
Kholid060
louisfosse
asked this question in
Q&A
-
Hello, Just discovered the tool and it's amazing! Thanks a lot :) |
Beta Was this translation helpful? Give feedback.
Answered by
Kholid060
Dec 13, 2021
Replies: 1 comment 1 reply
-
It's not possible for Automa to auto-click the ok button on the alert window. But instead, you can temporarily disable the alert window so it'll not show up when it's occurred. To do this, you can use the Javascript code block and then write below code const alertWindow = window.alert;
window.alert = () => {
window.alert = alertWindow;
}
automaNextBlock(); |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
louisfosse
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It's not possible for Automa to auto-click the ok button on the alert window. But instead, you can temporarily disable the alert window so it'll not show up when it's occurred. To do this, you can use the Javascript code block and then write below code