Results for selenium-webdriver
I am currently facing a challenge while attempting to automate the handling of an alert generated by a specific link using Selenium WebDriver. Upon cl...
The Problem: I get a "NoSuchElementException:Unable to locate element error". The Source Code of my Program which generates the Exception: The last li...
My solution works locally on windows 10. with python 3.12 Deployed to a linux server with Python 3.11.5, I get the exception: Service /home/project/.c...
so I am trying to open some pages with selenium Chrome, and everything works fine while headless mode isn't used. But when I use headless mode, the pa...
I want to just write a hello world with selenium and have the following code: from selenium import webdriver driver = webdriver.Chrome('C:/Users/[...]...
I'm trying to set up a test with Selenium Webdriver and Cucumber.js on Node.js. I have a check in a homePageSteps.js file to simply see if a banner ex...
I am trying to find a way to find main price and also discounted price in a webpage but I can get just one of them and I need a good pattern or method...
I want to make an integration Selenium test of my Spring Boot Web application, however I can't figure out how to update the object inside my test clas...
I have following code: from selenium import webdriver driver = webdriver.Chrome() driver.get("https://google.com") This code works well except that ...
I have tried many different ways I found online on how to locate this button, but after every try, the function gives me an empty list. I need to loca...
I have this selenium script that can enter email address, hit the use password button but then fails on entering the password: from selenium import we...
I am trying to retrieve the prices from the website https://app.evimdekipsikolog.com/. The prices are within "cards" within the following element clas...
I have a rather strange problem that I can't explain. Context: as part of a project, I created a webscraping script (Selenium + Beautifulsoup) to retr...
I'm trying change currency on USD in booking.com website by Selenium but I got a little problem with "click" on USD sign. My code always set first Cur...
I'm stucked to access this website - https://... The cloudflare is blocking the selenium driver. Currently i'm using https://github.com/seleniumbase/S...
from selenium import webdriver from webdriver_manager.chrome import ChromeDriverManager driver = webdriver.Chrome(ChromeDriverManager().install()) dr...
I cannot find element by class attribute using selenium from this site. Unfortunately I get an NoSuchElementException. But at the same time I am sure ...
Now, I am using Chrome browser Version 119.0.6045.160. But the latest Chrome Driver version, I downloaded is "ChromeDriver 114.0.5735.90" For this cod...
table = driver.find_element(By.XPATH, "//table") This is working but finds the first table on webpage, there are three on the page and I want the thir...
I'm scraping a website and I want to check if the content that is found by browser.find_element() matches a specific word given in the code. If it doe...
I have problems about extracting tweets from Twitter. As I extracting tweets with Python Selenium, after a while Twitter occurs "Can't load page". To ...
Just started learning Selenium with Python. And no matter how much I change the WebDriverWait, it's still giving me the TimeoutException. from seleniu...
I am trying to extract the text using Xclass that follows the bolded politicians name in the below code. I am able to extract the politicians name and...
Im trying to get used to Python selenium because of a data literacy class at my university. I figured out a project for my class where i need some dat...
I am trying to open an internet radio station and automatically click the Play button using selenium, but I can't find the Play button element. I am u...
How do I undo the most recent local commits in Git?
How can I remove a specific item from an array in JavaScript?
How do I delete a Git branch locally and remotely?
How can I find all files containing a specific text (string) on Linux?
How to find all files containing specific text (string) on Linux?
How do I revert a Git repository to a previous commit?
How do I create an HTML button that acts like a link?
How do I check out a remote Git branch?