question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

[🚀 Feature]: Chrome101 adds a verify your identity popup I'm unable to pass with selenium

See original GitHub issue

Feature and motivation

Chrome: Version 101.0.4951.15 (Official Build) beta (64-bit)

from chrome101 this popup happens on my machine when I ask for access to the fido2 security key feature https://docs.microsoft.com/en-us/azure/active-directory/authentication/fido2-compatibility

I’m unable to control it via selenium, the chrome developer console do not react on it. I have to manually just press enter to continue. but sending this enter I’m unable to.

Is there a way to bypass it via config? or chrome developer api?

How can I pass this? chrome100-verify-your-identity

Usage example

       wd.get(url)
        el = WebDriverWait(wd, args.webwait).until(EC.presence_of_element_located((By.XPATH, "//bp-button[@name='authenticationExecution'] | //*[@id='fido2']")))
        el.click()
        log.info("here the security key popup happens - code below have no impact")
        action = ActionChains(wd)
        action.send_keys(Keys.ARROW_DOWN).perform()
        action = ActionChains(wd)
        action.send_keys(Keys.ENTER).perform()

Issue Analytics

  • State:closed
  • Created a year ago
  • Comments:8 (6 by maintainers)

github_iconTop GitHub Comments

1reaction
AutomatedTestercommented, Apr 6, 2022

It looks like we will need to see about getting https://wpt.fyi/results/webdriver/tests/permissions/set.py?label=master&label=experimental&aligned&q=permissions implemented in Selenium. I didn’t realise the chrome folks had implemented it.

0reactions
github-actions[bot]commented, Jul 2, 2022

This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.

Read more comments on GitHub >

github_iconTop Results From Across the Web

How to handle authentication popup in Chrome with Selenium ...
In such cases, passing credentials in URL wont work. Here is the solution: #Step1: Create chrome extension#. Create a folder named 'extension' ...
Read more >
How to handle Permission Pop-ups using Selenium WebDriver
In this video, I have explained about "How to handle Permission Pop-ups using Selenium WebDriver".Video Timeline:00:00 Introduction00:24 How ...
Read more >
Handling Alerts, Prompts, Confirmation, Authentication ...
Selenium 4 - Full Detailed Course (Year 2022). Handling Alerts, Prompts, Confirmation, Authentication Popups & many more ( Selenium 4 ...
Read more >
How to Handle Basic Authentication Pop Up in Selenium
In this video, you will learn how to handle basic authentication pop up in selenium.Authentication pop up can not be handled by using...
Read more >
Handle pop-ups, permissions, and notifications - BrowserStack
Learn how to manage pop-ups, permissions, and notifications in different browsers when running your Selenium tests on BrowserStack Automate.
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found