157,738 questions
Advice
0
votes
0
replies
24
views
which is the best folder structure format for e2e automation, playwright?
I was looking into different folder structure for e2e automation framework using playwright. is this good practice to have spec, page object and data file is same folder in e2e?
apps/
└── app-e2e/
├─...
Tooling
0
votes
0
replies
26
views
Web page interaction inside PySide6.QtWebEngine
As written in the title, im looking for a way to interact with a web embedded inside a PySide6 window.
Right now i have a pyside6 GUI which connects to an excel page (xlwings library) to extract the ...
Advice
0
votes
2
replies
24
views
How do i retrieve 'data attribution' from Google Earth?
I am working on a project that requires me to check which company uploaded the image and when was the last update for a list of coordinates on Google Earth. I uploaded the coordinates data using a KML ...
-1
votes
0
answers
110
views
Cannot locate hidden input element in latest WhatsApp Web for image upload [closed]
I am using Python and Selenium to automate sending images via WhatsApp Web. Until recently, my script worked perfectly by locating the file input element and sending the file path to it.
However, ...
1
vote
2
answers
83
views
Unable to create a web driver object if the selenium container is stuck in the middle of a session
I have the following piece of code that I use to create web drivers for my Spring Boot application.
public RemoteWebDriver createDriver() {
ChromeOptions options = new ChromeOptions();
URL ...
-2
votes
0
answers
78
views
XPath not working when using a path that clearly exists in the elements tree [closed]
For a WebElement queried from selenium webdriver, when I get_attribute('outerHTML') it prints
<tr>
<td class="tdcolumngrey" width="70%" style="font-weight:bold;&...
0
votes
2
answers
110
views
Selenium/Python: Trying to display choices in a dropdown menu
I have a similar question that's being worked, but I made an error and I don't think editing the other question makes sense as it requires a complete rewrite and would make the original question (and ...
1
vote
1
answer
66
views
C# Selenium using Kendo-dropdownlist, Actions (mouse) do not work. Space bar, arrows keys do work
Here is code I'm using to scroll through a list of districts:
IWebElement districtsList = modelAddInvoice.ReturnDistrictInvoiceAddDistrict();
districtsList.Click();
districtsList.SendKeys(Keys....
0
votes
2
answers
55
views
SeleniumBase + UC Driver increase script timeout
i've been trying to run a script is my browser but i'm not able to increase the maximum timeout, no matter what I try, is it possible to make a script run longer than 30 seconds, can get the result in ...
-1
votes
0
answers
68
views
Getting issue after converting jar to exe file [closed]
I'm exporting maven project from eclipse into jar file after exporting jar file is executing successfully
Im converting the jar file to exe file using Launch4j
In that selected output file and ...
Advice
0
votes
2
replies
71
views
How can I automate captcha bypass in Selenium when scraping a website?
I’m trying to automate the login flow on a website using Python and Selenium.
As soon as I submit the username and password, a reCAPTCHA v2 appears and the WebDriver just gets stuck on it. I’ve tried ...
1
vote
3
answers
73
views
How to select a dropdown built as a button (Selenium/Python)
I am trying to select choices from a dropdown menu, using Selenium with Python. The menu might be built as a button as I had no luck trying to use Select. It also might be a Bootstrap dropdown. Here ...
1
vote
1
answer
50
views
TimeoutExeption in Headless mode
I’m working on a Python project using Selenium and pytest. All tests pass locally in normal (non-headless) mode, but when I run them in GitHub Actions or even locally in headless mode, many of them ...
3
votes
0
answers
256
views
How to attach a PDF file on WhatsApp Web using Selenium? (Error: “The file you tried to add is not supported”)
I’m trying to automate sending messages on WhatsApp Web using Selenium (Python), and I need to attach a PDF file.
This is the code I’m using:
from selenium import webdriver
from selenium.webdriver....
0
votes
0
answers
46
views
Invalid content signature Selenium/Docker
I have a Docker setup running automations 24/7 in both Chrome and Firefox browsers. However, for about a week now, Firefox has been failing and showing the error that appears in the image.
Anyone can ...