Hello everyone I’m learning selenium recently and as I bet is a classic newbie mistake I filled my code with time.sleep which made everything really slow. So I started to learn about webdriverWait. I took some sample code and I have tried multiple things but I still get the error of "what you clicked is ..
Category : selenium-webdriver
I want to use selenium in the spyder/Jupyter-notebook, but I can not download the driver. Is it possible to somehow use selenium without download the driver, like in collab version Source: Python..
from selenium import webdriver from selenium.common.exceptions import TimeoutException from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.support import expected_conditions as EC from selenium.webdriver.common.by import By driver = webdriver.Firefox() driver.get(‘https://pythonbasics.org’) timeout = 3 try: element_present = EC.presence_of_element_located((By.ID, ‘main’)) WebDriverWait(driver, timeout).until(element_present) except TimeoutException: print("Timed out waiting for page to load") finally: print("Page loaded") This is my code , i want ..
I have a try/catch block inside a while loop. The problem I face is that the while loop executes only once even though there are clearly more iterations possible. Please note that the button referred to in the code below is only available on the business subscription of flight radar and hence may not be ..
driver.get("https://test.com/#/") delay = 9 # seconds try: start_time = time.time() myElem = WebDriverWait(driver, delay).until(EC.presence_of_element_located((By.XPATH, ‘/html/body/app-root/div[1]/div[1]/div[3]/div[2]/div[1]/div/app-home/div/div[1]’))) x = ("%s" % (time.time() – start_time)) roundE =float(x) roundEs = math.ceil(roundE) print(roundEs) I want to get Xpath loaded time , is it correctly ? Source: Python-3x..
I’m trying to log in to linked in and access the "My network" element. I’ve tried using id, class, xpath, and nothing works. I also tried waiting for 10 secs for the page to load so that python can access the site but that gives an error too. Here’s my code: from selenium import webdriver ..
I’m practicing trying to scrape my university’s course catalog. I have a few lines in Python that open the url in Chrome and clicks the search button to bring up the course catalog. When I go to extract the texting using find_elements_by_xpath(), it returns blank. When I use the dev tools on Chrome, there definitely ..
I am trying to click on the ‘Cancel’ button in the Print Preview Application in Chrome. I have tried several solutions but finally landed on this question which has been of great help https://stackoverflow.com/questions/56380091/how-to-interact-with-the-elements-within-shadow-root-open-while-clearing-brow/56381495#56381495. I have followed the steps to do the same to Cancel the Print Preview Application button but I keep receiving: Message: ..

I have a screen where there is a textbox having placeholder text. I need to replace that text. The inspect snippet: I have tried everything to access it but every time I get the error that element is not interactable. Moreover, this element doesn’t appear in page source as well. One of my efforts so ..
I want to establish load time of slider in my website , How long does it take to load Xpath is : /html/body/app-root/div[1]/div[1]/div[3]/div[2]/div[1]/div/app-home/div/div[1] this main xpath in the xpath are many sliders slider move this is my code but i think this is not working correctly because output always is 1 second This is One ..
Recent Comments