0

Is it possible to automate even the prompt event which says open zoom meetings using selenium?, So we generally used selenium to automate on the CHROME webdriver to open a meeting link but we cannot click open zoom meetings button like in the screenshot below, is there a way to do it using selenium and python?

Thank you.enter image description here

1 Answer 1

1

Yes its Possible to Automate the Prompt using Selenium and Python.

You just need to change the focus from the parent page to the Alert pop-up. It can be done using following code snippet.

alert = driver.switch_to.alert //(driver is basically your webdriver) then switch_to.alert is used change focus from current page to alert.

And to Accept the popup you can use

alert.accept()// To Accept the meeting link.

or

alert.dismiss()// To Cancel the Pop Up.
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.