Closed. This question needs details or clarity. It is not currently accepting answers. Want to improve this question? Add details and clarify the problem by editing this post. Closed 2 years ago. Improve this question I am gathering a list of news headlines from Reuters. I need to click on the EARLIER button to load previous headlines. I can successfully
Tag: selenium-webdriver
Struggling with Selenium as a new backend developer
I’m very new to web scraping and am trying to build an algorithm to pull all of the information from my school’s course catalog. What I have so far is: I’ve had much more but keep running into Selenium errors about not being able to locate the information when it is correct. Can anyone get me on the right track?
How to deal with google chrome confirmation alerts when using selenium in python?
I am trying to make a web automation program that opens my school’s app. Our school is using Adobe Connect. When I try to open the installed app, it gives me a confirmation alert. Which is not inspectable and can’t define any XPath or… So, how can I handle this? I have read many QAs but I can’t manage it.
Selenium how to select first option if page has multiple select box using python
I have 3 select box’s in my page example : If there has 5 or 6 select box I will always select 1st option, I am unable to do it using selenium. I have tried below code But no any impact, How can I solve this problem ? Answer You are very near of the solution ! See the documentation
How to generate a test report in python using selenium and unittest?
I was trying to test a simple login form with different cases. I used python,selenium,python’s unittest library for testing and i am able to get test done by unittest library but how can i generate test reports for this ? I tried with HTMLTestRunner but it has bugs and i found it was written for python 2x version. A lot
inputs being filled in too fast in selenium | python 3.8
so I am trying to log into this website called ttrockstars, and I have written a function to login to the website. However the code seems to be running too fast and ignoring time.sleep(5) that i have added to the code: When I run this, it simply enters the school name and then deletes it and enters the username and
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!!
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’s displaying 6320, which is
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 list of season links I desire but then when I