All Questions
Tagged with selenium-webdriver-python or selenium-webdriver
157,625 questions
1
vote
0
answers
42
views
selenium/Edge driver fills up memory in golang application
We have a golang web application which is using msedgedriver.exe to convert HTML to PDF. For each user session we create a new Edge Webdriver and Quit when the session terminates.
Our problem is, that ...
-1
votes
2
answers
61
views
Selenium WebDriver receiving updates faster than Chrome
I've ran into this issue twice now where Selenium WebDriver updates, requiring a new version of Chrome, but Chrome can't detect a new version yet. The first time I experienced this, it took Chrome 15 ...
1
vote
1
answer
59
views
Searching for an element By.ID working but not By.XPATH in Selenium
I want to automate clearing all browser data in Firefox (about:preferences#privacy):
In so doing I have run into an issue searching By.XPATH vs By.ID. Consider the following HTML:
<stack id="...
0
votes
2
answers
55
views
Trouble clicking on a button with selenium in a modal [closed]
I have the following HTML snippet on the page:
<div class="transparent-overlay" id="content-overlay">
<form id="personaSubmitForm" action="/...
1
vote
1
answer
117
views
Selenium: WhatsApp Web file upload works in normal Chrome but fails in headless mode
I’m using Selenium with C# ChromeDriver to automate WhatsApp Web.
Uploading a PDF works correctly in normal (visible) Chrome:
var attachInput = driver.FindElement(By.CssSelector("input[type='file'...
Best practices
0
votes
5
replies
62
views
How on Selenium to automate facebook/google registration
I am developing a selenium test and I was able to create it for registration by email.
However, writing a test for facebook and google login/registration is very tricky.
One of the problem that they ...
-4
votes
0
answers
39
views
Google Login Issue in Selenium (.NET / C# / MSTest) [duplicate]
I’m currently working with Selenium WebDriver using .NET (C#) and MSTest for automated UI testing.
Until recently, I was able to access our service (which requires Google authentication) without any ...
0
votes
1
answer
101
views
Selenium opens page in the Chrome footer
I am working on a project where I am using WPF and C# with Selenium. It automates some steps on one web page. I am using a specific user-profile to do it. It's a company owned laptop.
When Selenium ...
4
votes
5
answers
136
views
The date field is not entered correctly using Selenium Python
I'm trying to fill in a date field using the following code:
import time
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.chrome.service ...
0
votes
0
answers
36
views
RSAT (D365 Finance & Operations) – “No client was opened in the timeout period”
I’m trying to set up RSAT (Regression Suite Automation Tool) to run existing test cases from Azure DevOps Test Plans against a Dynamics 365 Finance & Operations environment (cloud sandbox). The ...
-1
votes
1
answer
48
views
Selenium - complete checkbox based on value
I am very new to selenium, have made some progress logging in and navigating around a website but am stuck trying to select some checkboxes. There are multiple checkboxes all with the same id but ...
0
votes
1
answer
77
views
How do I properly verify a successful login in Selenium WebDriver using Java and TestNG? Should I use Selenium IDE for verification?
I am currently learning test automation and working on a homework exercise where I automated a login process using Selenium WebDriver with Java and TestNG. My test successfully navigates to the ...
-1
votes
0
answers
56
views
Finding all shadow roots [duplicate]
I am looking for a Selenium XPATH query to find all nodes in an xpath which have a #shadowroot under them. I want to open each root and continue doing that to find something I am looking for since I ...
Advice
1
vote
2
replies
86
views
How to check if 1000+ Twitter users have tweeted a specific keyword without using the paid API?
I have a list of 1,000 Twitter handles and I need to check if each user has tweeted a specific keyword at least once.
Since the Twitter API Free tier no longer allows reading user timelines or ...
2
votes
3
answers
185
views
Selenium ChromeDriver not working in JavaFX application packaged as an exe
I have a JavaFX application that uses Selenium to scrape some websites. Everything works great when I run the application through IntelliJ. However, I am packaging the final product into an exe file ...