Skip to main content
2 votes
0 answers
24 views

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 ...
Nadi's user avatar
  • 31
0 votes
2 answers
84 views

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 ...
Brandon Smith's user avatar
0 votes
0 answers
27 views

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 ...
shivu2012's user avatar
0 votes
2 answers
102 views

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 ...
PeteF's user avatar
  • 3
0 votes
1 answer
83 views

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=&...
rozerro's user avatar
  • 7,376
1 vote
1 answer
155 views

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: ...
Vignesh Elumalai's user avatar
0 votes
0 answers
61 views

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....
S H's user avatar
  • 1
0 votes
1 answer
142 views

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 ...
Salva194's user avatar
0 votes
0 answers
41 views

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....
Eldar Zaripov's user avatar
0 votes
1 answer
66 views

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('...
Gigabyte's user avatar
0 votes
1 answer
62 views

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 ...
Jitha's user avatar
  • 11
0 votes
1 answer
68 views

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: ...
Awanish Mishra's user avatar
0 votes
1 answer
104 views

i am trying to find element whose structure something like below <div> <div> <div> <ul> <object id = "obj" #document (here is a link ) &...
ritah's user avatar
  • 1
0 votes
1 answer
317 views

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 ...
Nguyễn Thành Đạt's user avatar
0 votes
1 answer
393 views

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. ...
econnoob5's user avatar

15 30 50 per page
1
2 3 4 5
13