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 s…
Tag: selenium
How to increase YouTube video playback rate using setPlaybackRate in Selenium with Python?
The objective is to change the HTML video playback rate before the event click with Selenium. There are several thread discussing about the request such as OP1 and there were two suggestions; From the OP1, Jeremy Visser suggested to change the attribute directly, which is as below While Armel on the hand sugg…
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 link…
pycharm python selenium scraper apparently not printing correct value
I new to python, selenium, pycharm and such. I’m trying to print the value of a on a website ( at the moment of writing this the value is 6320 ).The code is not giving errors but it’s printing nothing. As you can see in the screenshot, when i’m debugging and hovering over the variable, it…
How do I run through a list of links one by one and then scrape data using selenium(driver.get)?
I’m trying to loop through 2 sets of links. Starting with https://cuetracker.net/seasons > click through each season link (Last 5 seasons) and then click through each tournament link within each season link and scrape the match data from each tournament. Using the below code I have managed to get a l…
WhatsApp Web Automation with Python Selenium (unable to locate element)
I am using python and selenium to send a message to a target. I can successfully open whatsapp web but after that I cannot open the inbox of the contact to whom I want to send the message. Here is the code so far. The first part is common where I have to open the web page. It happened without
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 c…
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”…
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…
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 fro…