157,825 questions
0
votes
0
answers
36
views
Snapchat Enter Selenium not detecting
i have a script that
logs in
searches for a name
arrows down then enter (not working)
how do i fix this? It would be nice if it is completely headless
def send_snap_to_recipient(driver: webdriver....
-4
votes
0
answers
37
views
Ruby on Rails and Selenium cannot fully retrieve the article body from NHK news.web [closed]
環境
Ruby 3.2.2
Rails 7.1.5
Selenium 4.11
ChromeDriver 116
OS: Linux
現象
NHK の news.web サイトの記事本文を Selenium で取得しようとしています。
タイトルや日時は取得できますが、本文が途中で途切れてしまいます。
取得される内容の例:
メキシコでは、大雨によって各地で洪水や土砂崩れが発生し、...
-4
votes
0
answers
42
views
TestNG Parallel Execution Issue: Sequential Classes Violating Order Across Parallel Threads [closed]
I'm encountering an issue where the sequential order of classes within a single block is being violated when the entire suite is run in parallel. This is causing prerequisite tests (Registration) to ...
-1
votes
0
answers
106
views
i keep getting a twitter login error using seleium
I use selenium to login (and post) to twitter, to bypass API rate limits. recently (few days), I'm getting the error, right after typing the username:
Could not log you in now. Please try again later....
2
votes
1
answer
39
views
How to run the AdGuard extension in WebDriver?
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.chrome.service import Service
from selenium.webdriver.chrome.options import Options
from selenium....
-1
votes
1
answer
48
views
Selenium script marks all search results as “not found” because details load only after clicking a link [closed]
I’m using Python + Selenium + ChromeDriver to check a list of titles (from a CSV file) against an online library catalog.
My script searches each title and tries to determine if a specific library has ...
0
votes
0
answers
73
views
How to convert a selenium driver to seleniumbase CDP driver?
I am trying to convert a selenium driver to seleniumbase CDP driver as codes below:
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
opts = Options()
opts....
0
votes
0
answers
48
views
Error when trying to generate Allure reports
I am working on an automation with Selenium, Java, Maven, Junit. I want to use Alleru reports but when I try to run the mvn allure:server command, it generates the following error.
mvn allure:serve
[...
0
votes
0
answers
45
views
new verison of chromedriver returns org.openqa.selenium.SessionNotCreatedException: Could not start a new session
I moved the application to a new server and now the following error occurs every time you use selenium
e=org.openqa.selenium.SessionNotCreatedException: Could not start a new session. Response code ...
0
votes
1
answer
51
views
Issue with selecting element from dropdown list
I'm trying to test a travel website. When I enter the city code, the correct airport should be picked from the list. However, it enters the city code and does not proceed to pick up the city from the ...
0
votes
0
answers
24
views
How can I find MY session on a Selenium Grid webpage?
I am new to automation, so, I'm in a big company where possibly hundereds of developers currently share a single selenium grid. This results in a problem though, which, of this long list of Session ...
-5
votes
0
answers
26
views
Input data gets disappear as the Next Button is clicked in Selenium Python Automation [closed]
All the input data disappears as the Next Button is clicked with empty field alert in Selenium Python Automation. This happens only while in automation. It works as normal while executed manually. ...
0
votes
0
answers
27
views
Selenium using chromium can't access a domain mapped to localhost
In /etc/hosts I map 127.0.0.1 example.com, because I want the user to be able to navigate to example.com like it's real but it's actually going to my local dev server. However, it seems like Chrome ...
0
votes
1
answer
51
views
How do I scrape a person's name from their LinkedIn profile using Selenium's Chrome driver in Python?
I have a Python script that uses Selenium's Chrome driver to log into LinkedIn and visit one profile. That works fine. However, I can't get the script to scrape the person's name from their profile.
I ...
0
votes
0
answers
29
views
SSO Implementation Causes Browser Profile Popup in Jenkins Non-GUI Automation
We recently implemented Azure Single Sign-On (SSO) for our application. Since this change, our automated UI tests, executed via a Jenkins pipeline on a remote Windows Desktop agent in non-GUI/headless ...