57,846 questions
1vote
0answers
14views
Chart and some details not loaded on selenium grid, node-chrome
I have peculiar situation, i think. When I run tests locally, the chart is rendered properly but when I run it on selenium grid locally as container in hub-node model the chart doesnt come up. I have ...
0votes
0answers
17views
Selenium Driver can't switch to Alert
In my tests (running on Chrome), there are some scenarios when I click on a call-to-action button, then I am redirected to another page where basic authentication alert is present and I need to login. ...
-3votes
0answers
20views
Cant press the button [closed]
I cant seem to press the sign in button while i can press other link easily any solution to this ? link if the website is https://online.mmu.edu.my/
1vote
0answers
22views
Mobile Testing with Selenium on real iOS device on webmate.io
I'm executing my automated tests on real iOS device provided by webmate.io (TestFabrik) on Safari browser. My automated tests are implemented with Selenium and Java and I'm not using Appium. The issue ...
1vote
0answers
36views
executing javascript function with chromedriver and c#
I have a button that I need to click to open up file explorer and select a file. The entire page is JavaScript functions and there is no button id or name that comes up in the html I tried: myField = ...
0votes
0answers
17views
Getting JSONPath Exception & IllegalArgumentsException while executing an API Automation scripts using JUNIT
Getting JSONPath Exception & IllegalArgumentsException while executing an API script using JUNIT Below is the Full Error - io.restassured.path.json.exception.JsonPathException: Failed to parse ...
1vote
0answers
28views
How to scale selenoid on several servers?
I have three servers. I want to start selenoid on two servers and use this cluster from the third server. I am using this code to specify server if randint(0, 1) == 1: host = "HOST_1&...
-4votes
0answers
34views
Python Selenium FireFox (Geckodriver) - Script runs on Windows but fails on Linux server (TimeoutError) EXE or python script both are not working
I have written a Python script for web scraping using Selenium with Firefox (Geckodriver). The script runs perfectly on Windows, but when I run it on Linux — either as a Python script or packaged as ...
0votes
0answers
47views
Selenoid in docker-compose: Chrome failed to start: crashed
I am trying to run selenoid in docker-compose, installed docker pull selenoid/vnc:chrome_80.0, selenium version is 4.31.0 I have an error when running main.py python main.py Traceback (most recent ...
1vote
1answer
63views
HttpsConnectionPool Error Selenium: while paste 3000 ids from column in a csv file using Selenium in input field of a URL. Works well for 200 ids
I am using selenium to automate a downloading of a report. for that i need to paste around 3000 ids in a loop for ids around 300 000 into a input field of a webpage and click download button and wait ...
1vote
2answers
110views
Can't close cookie pop up on website with selenium webdriver
I am trying to use selenium to click the Accept all or Reject all button on a cookie pop up for the the website autotrader.co.uk, but I cannot get it to make the pop up disappear for some reason. This ...
0votes
2answers
73views
How to get the background color of a web page using selenium with python [closed]
Using this code: import re def rgba_to_hex(rgba_str): # Extract the numbers from the rgba string match = re.match(r'rgba?\((\d+), (\d+), (\d+)(?:, [\d.]+)?\)', rgba_str) if not match: ...
0votes
2answers
56views
How can I fix selenium edge driver error: session not created?
I am a newbie and trying to write a picture parser, starting to learn parsing have a code that gives an error, how can I fix it def setup_browser(): options = EdgeOptions() options....
0votes
0answers
38views
Great-Tables: Not being able to GT.save() de final figure as .png
I'm making a few tables on python using the fairly new great-tables library, but I'm not being able to properly .save() the table as PNG. In total I made 3 tables, 2 last week and one I just finished. ...
0votes
0answers
39views
How to locate popup via Selenium
I am trying to programmatically download a file from a webpage. I can navigate to the page and click the 'Download' button, but that button opens a new window to set the download location and click ...