Skip to content
Advertisement

Tag: selenium

Message: element not interactable Error While Sending Keys [search_bar.send_keys(course_name)] To Search Bar Of Youtube using selenium python

I tried Most of the solution of StackOverflow but didn’t work for me I am trying to send some course name to youtube search bar using selenium python it works fine before but now it gives this error while doing this And search_bar.send_keys(course_name) works fine for other websites but not in YT Code sample getYoutubeCourse() function body then after this,

Web page is loaded in selenium and reaches to end but does not contain all the elements inside the div

This is the site. https://www.talabat.com/uae/top-selling. There are somewhat 100 products and only 30 gets loaded. I was trying to fetch all the links and page reaches to end but only display 30 products and when clicked somewhere in the webdriver then loads the rest of the products. How can I print the links of all the products? Thanks in advance!!

How to send AppleID to the Sign in field using Selenium and Python

Why is this incorrect: Web page: https://idmsa.apple.com/IDMSWebAuth/signin?appIdKey=a01459d797984726ee0914a7097e53fad42b70e1f08d09294d14523a1d4f61e1&rv=2&path= Steps followed: Inspect, element selector, click on Apple ID field box shows: My code: Error: I’ve even put sleep for 100 sec just in case it was erroring because of it was taking a while to load. Answer Pat yourself on the back as there are a lot of positive take away, as

How to bypass the message-“your connection is not private” on non-secure page using Selenium?

I’m trying to interact with the page “Your connection is not private”. The solution of using options.add_argument(‘–ignore-certificate-errors’) is not helpful for two reasons: I’m using an already open window. Even if I was using a “selenium opened window” the script runs non stop, and the issue I’m trying to solve is when my browser disconnects from a splunk dashboard and

Using selenium chromedriver and python with chromium on Linux

I’m running Arch Linux with current chromium browser version (80.0.3987.100-1) and all packages fully updated. I have a python script that requires chromedriver. The instructions there say, ChromeDriver is a separate executable Help WebDriver find the downloaded ChromeDriver executable by specifying the path [python] driver = webdriver.Chrome(‘/path/to/chromedriver’) In chromium, chromedriver is included (at least on Arch, and probably on all

Removing specific word from WebElement text

Hello I am scraping a website using selenium which has a button named view profile whenever i scrape it shows me the text of button in my output because it’s under the same <div> that I am scraping data from like my code its ouput Is there any way I can remove that view profile text or stop it from

Advertisement