element not interactable exception in selenium web automation

Try setting an implicit wait of maybe 10 seconds. Or set an explicit wait. An explicit waits is code you define to wait for a certain condition to occur before proceeding further in the code. In your case, it is the visibility of the password input field. (Thanks to ainlolcat’s comment) Explanation: The reason selenium … Read more

MacOS Catalina(v 10.15.3): Error: “chromedriver” cannot be opened because the developer cannot be verified. Unable to launch the chrome browser

I found the work around as below Open terminal Navigate to path where your chromedriver file is located Execute any one of the below commands Command1: xattr -d com.apple.quarantine <name-of-executable> Example (or) Command2: spctl –add –label ‘Approved’ <name-of-executable> Source: https://docwhat.org/upgrading-to-catalina Note: This will work only with the file(s) where the above command is executed. If a new chromedriver … Read more

ImportError: No module named ‘selenium’

If you have pip installed you can install selenium like so. pip install selenium or depending on your permissions: sudo pip install selenium For python3: sudo pip3 install selenium As you can see from this question pip vs easy_install pip is a more reliable package installer as it was built to improve easy_install. I would also suggest … Read more

SBOX_FATAL_MEMORY_EXCEEDED error shown when Chromedriver turned 1800-1900 pages using Selenium

This error… …implies that there is a huge memory consumption issue in Chrome that cause tabs to crash with SBOX_FATAL_MEMORY_EXCEEDED error. Deep Dive As per the article SBOX FATAL MEMORY EXCEEDED constantly and chrome is using large amounts of memory this issue of Chrome consuming huge memory is observed with all of the following instances: Google Chrome … Read more