All Questions
4,650 questions
0
votes
1
answer
55
views
Firefox Selenium WebDriver Timeout in OpenShift Pod
I'm experiencing a timeout issue when trying to run Selenium with Firefox in an OpenShift pod. I'm using Python 3.9 with Selenium to automate browser interactions with a web application.
When ...
0
votes
1
answer
72
views
"User directory already in use" Selenium Python
I am aware that there are other questions like this one on the site, but I have found that they are trying to do a different thing and the solution is not applicable to my case. The issue is that I ...
0
votes
1
answer
65
views
Handling authentication pop-up after a ButtonClick in python selenium Edge
So I am facing following issue.
I am trying to get a report from a specific site(Its not public). The steps are open the webpage --> enter username --> goto nextPage --> enter Password --> ...
-1
votes
1
answer
72
views
How to scrape links off Google images result with selenium, python?
I'm trying to work on a project, and I need to get the links off google image results.
Here is my code:
from selenium.webdriver.common.by import By
from selenium.webdriver.common.action_chains import ...
2
votes
1
answer
157
views
Seleniumbase Python not passing detection on Linux
I have the following script in Python but when the page loads the captcha does not work
Can someone help me?
On Windows I have this code that works well for me but on Linux it doesn't work for me
...
0
votes
0
answers
13
views
How can we make an element tappable when Appium detects it and reports a successful click, but the action is not reflected in the app?
This issue is observed only on iOS 18 versions:
I'm trying to tap on an element ,which is a Cancel button, but the action is not reflected in the app. Upon checking the logs, I found that Appium ...
0
votes
0
answers
31
views
Instagram scroll through comments Selenium Python
I came across this situation, I need to scroll through the instagram comments to the end, but only this code works for Selenium:
driver.execute_script("arguments[0].scrollTop = arguments[0]....
2
votes
1
answer
116
views
Extracting Owner’s Username from Nested Page on HuggingFace
I am scraping the HuggingFace research forum (https://discuss.huggingface.co/c/research/7/l/latest) using Selenium. I am able to successfully extract the following attributes from the main page of the ...
-2
votes
1
answer
64
views
--headless is not working for Python selenium
This is a block of code of my project
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.edge.service import Service
from selenium.webdriver.edge....
0
votes
0
answers
69
views
Issue in reading behavex.ini file with behavex python
I am working on creating a framework using behavex-python.
I have below structure:
project_root
helpers
resources
tests
features
steps
pages
environment.py
...
0
votes
1
answer
64
views
element.get_attribute('title') return empty
HTML:
<input id="arid_WIN_0_7" type="text" class="text " readonly="" style="top: 0px; left: 0px; width: 122px; height: 21px; background-color: rgb(222, ...
0
votes
0
answers
38
views
find_elements only gets the first element when using Selenium
I have a Python program that uses undetected Chromedriver to scrape product data from Walmart. The following is a simplified version of my code, but it only gets the first element. Can someone show me ...
-1
votes
2
answers
113
views
i'm working on to make a python bot to click button in a list that is repeating it's self using selenium
I want to make a python bot that will do my daily work that i do repeatedly and same work, so for that i'm using selenium with chrome. I want to click a button that repeat it'self but in a list and i ...
0
votes
0
answers
27
views
Selenium proxy connection issue
I have been trying to connect to proxy for the past few times using proxy please help
from selenium import webdriver
import time
from selenium.webdriver.chrome.options import Options
#################...
0
votes
0
answers
24
views
Python Selenium Function Runs with tkinter Messagebox but Raises Exception on Its Own
I am writing a python script that can automate fetching of content from page. One function is this:
def extract_prices(elements, wait):
parent_element = None
child_element = None
prices = [...