183 questions
2 votes
0 answers
24 views
Selenium Webdriver: LinknedIn - Program Only Saves Every other Job and throws an Error Before Checking the Remaining Items in the List
Context: Using Selenium Webdriver to Log into LinkedIn and save Python Developer Jobs. I am not sure what I am doing wrong at this point. My code is able to create the job list by automatically ...
0 votes
2 answers
84 views
Stale Element & Overlay Issues In Loop
First, I'm very new to coding and it's likely that one or both of these issues has an easy fix. Don't feel like any suggestion is too basic. I've done a fair amount of research, but I think my code ...
0 votes
0 answers
27 views
order of list of elements located on a page keep changing on every click in selenium java
I located elements of languages displayed on google search page. I stored them in a list and iterated through the elements and tried to click one by one. But when I click the first element(link), the ...
0 votes
2 answers
102 views
How do I get round a Stale Element Reference exception when using Chrome Driver
I am trying to automate my login to a website I use. I have a Python script which successfully finds and updates the username and password, but when I try to 'click' Login, I get the stale element ...
0 votes
1 answer
83 views
StaleElementReferenceException arbitrarily occurs when finding an element
There is such a situation where I find inner div but with varying success, because of StaleElementReferenceException. <div role="dialog" aria-modal="true"> <div class=&...
1 vote
1 answer
155 views
How to solve 'StaleElementReferenceException: Message: stale element reference: stale element not found'?
Here's my code: elements = driver.find_elements(By.CLASS_NAME, 'name') for i in elements: i.click() driver.back() Error: selenium.common.exceptions.StaleElementReferenceException: Message: ...
0 votes
0 answers
61 views
Solving StaleElementReferenceException in Dynamic Page Scraping with Selenium on Google Colab
I am attempting to extract Titles, Authors, and PDF Links from the oral presentations tab, spanning pages 1 to 6, on the website https://openreview.net/group?id=ICML.cc/2024/Conference#tab-accept-oral....
0 votes
1 answer
142 views
Selenium issues with stale element reference @Python
I am writing to you after having done a little bit on research on this error "Stale element reference" and unfortunately, I still have not being able how to treat this issue. I am using ...
0 votes
0 answers
41 views
throwing a StaleElementReferenceException during dictionary iteration in a for loop
The following code is provided below: import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.BeforeEach; import org.openqa.selenium.chrome.ChromeDriver; import java.util.concurrent....
0 votes
1 answer
66 views
PYTHON & SELENIUM. How to navgate to mutiple href BUT error: StaleElementReferenceException: stale element reference: stale element not found
I post here my little code in order to find/scrap data by multiple pages. from selenium import webdriver from selenium.webdriver.common.by import By import time driver= webdriver.Chrome() driver.get('...
0 votes
1 answer
62 views
What is the StaleElementReferenceException in Selenium
When I try to locate an element I am getting an error Like StaleElementReference using WebDriver instance I try to do driver.findelement(By.xpath(Element)) it gives back staleelementreference ...
0 votes
1 answer
68 views
Getting Stale Element error in selenium python while navigating back on the page
I'm trying to build my own web scrapper in python selenium for this website : https://wyszukiwarka-krs.ms.gov.pl/, But when my code comes back from clicking an element,it gives this error : Message: ...
0 votes
1 answer
104 views
how to handle Stale Element Reference Exception while finding element in JMeter
i am trying to find element whose structure something like below <div> <div> <div> <ul> <object id = "obj" #document (here is a link ) &...
0 votes
1 answer
317 views
Selenium Python - StaleElementReferenceException Error
Currently I am practicing using selenium for Web Scraping and encountering StaleElementReferenceException Error. I tried to scrap the phone information from a retailed website and tried to make it for ...
0 votes
1 answer
393 views
Python Selenium - StaleElementReferenceException: stale element not found
I am trying to click on the next button at the bottom of the page to access the following page as in the image below: However, when I reach page 3 I receive the following error: selenium. common. ...