157,759 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
21
views
Take screenshot of whole html-page using python with selenium in non-headless mode?
i try to take a full screenshot of the whole html-page using the following code -
i would like to do this with selenium (not pyppeteer)
i am searching for a python-solution (not Java)
i am searching ...
0
votes
1
answer
45
views
EdgeDriver Opens Brower but fails to open URL
I am trying to automate the Edge browser with Selenium. Below are the things I have already checked, but when I run the code the browser opens and doesn't navigate to the URL.
No firewall is blocking....
0
votes
2
answers
88
views
Login fields are not able to be filled out?
I try to fill out some fields on a website using the attached code -
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.chrome.service import ...
-3
votes
0
answers
73
views
Wrong response for a log in in a website for an exam [closed]
I'm trying to find the good password of a website (fake facebook) for an exam.
I've used Python and Selenium to make a connection and put the mail and password in the website.My idea is to dynamically ...
-1
votes
0
answers
19
views
Selenium script to click on Radio button clicks on it but selects the previous radio button as well [closed]
I am facing an issue while selecting a radio button from set of 4. I am able to click on one radio button, but it clicks on the previous radio button as well. In that case 2 radio buttons are selected....
Advice
0
votes
1
replies
31
views
Selenium + Serenity BDD cannot find <tbody id="bodyArchivos"> inside iframe even though it exists in DevTools (Java + Cucumber)
I’m working on an automated test with Java + Maven + Selenium WebDriver + Serenity BDD + Cucumber.
The test needs to click the "Download" button of the most recent projection file in a table that is ...
0
votes
1
answer
67
views
selenium with google colab
Anyone working with Selenium in Google Colab has had trouble since yesterday, before 16hrs (UTC)
The code sample below was working all day long, but after lunchtime, it began to crash.
...
-6
votes
0
answers
41
views
Monitoring for handshake TLS in chrome/selenium headless mode [closed]
I have a script that access a URL that ask for certificate, when i'm using kaspersky anti virus, it prompt me for a certificate selection, but when i turn off kaspersky, then no prompt appear.
I'm ...
0
votes
3
answers
91
views
Using selenium assert with wait
I'm trying to use asserts in selenium java. I read that for every validation, I need to use an assert as best practice.
I stumbled upon this code example:
WebElement button = wait.until(...
-1
votes
0
answers
112
views
Can't Access Google Drive Sheet Tabs [closed]
Wanted to create a short script which would manually fill out my PPL program with the previous lifts from the last week for progressive overload. For some reason, I can't access the bar at the bottom ...
Best practices
1
vote
3
replies
79
views
Using selenium waits as asserts
I'm trying to use asserts in selenium java. I read that for every validation i need to use an assert as best practice.
i stumbled upon this code example:
WebElement button = wait.until(...
-4
votes
2
answers
74
views
How can I get BBFC ratings in python? [closed]
I am trying to write code to give me BBFC film ratings. I am using selenium to do this but would be happy with any solution that works reliably. After a lot of work I finally came up with this code:
#...
Tooling
0
votes
7
replies
114
views
Robot for Websites
Hi I need to create a robot that opens a website, does the sign procedure, then open another form and fill the data before sending the data to a post command by clicking on a button.
What is the best ...
1
vote
1
answer
40
views
Appium/Selenium c# windows shows an exception: Currently only pen and touch pointer input source types are supported
Regarding the Appium/Selenium 4 issue where complex mouse actions fail with the error: 'Currently only pen and touch pointer input source types are supported.'
Is there any official word, roadmap, or ...
2
votes
2
answers
243
views
Error message when scraping website via selenium
The Python code:
from selenium import webdriver
from selenium.webdriver.chrome.service import Service
from selenium.webdriver.support.ui import Select
import pandas as pd
import time
# define the ...