Home > OS >  Selenium can not find a element when elemnt exist
Selenium can not find a element when elemnt exist

Time:04-29

Hi I do not like APIs it is boring and hard to use so I use selenium to download image to my computer from artstation.com I use a this script:

artist = random.choice(["haiyu","cgnox"])
driver.get(f"https://www.artstation.com/{artist}")
time.sleep(4)
image = driver.find_element(By.XPATH,"/html/body/div[3]/div[2]/div/div/div[1]/auto-scrollable-to-top-on-location-change/user-projects[1]/div/div/div[1]/a/div")
image = image.find_element(By.XPATH,"/html/body/div[3]/div[3]/div/div/div[1]/auto-scrollable-to-top-on-location-change/user-projects[1]/div")

print(image)

but alweys this error selenium put me:

selenium.common.exceptions.NoSuchElementException: Message: Unable to locate element: 

/html/body/div[3]/div[3]/div/div/div[1]/auto-scrollable-to-top-on-location-change/user-projects[1]/div
Stacktrace:
WebDriverError@chrome://remote/content/shared/webdriver/Errors.jsm:183:5
NoSuchElementError@chrome://remote/content/shared/webdriver/Errors.jsm:395:5
element.find/</<@chrome://remote/content/marionette/element.js:300:16

I do not know where is the problem because I copy an element from the browser BTW what I actually want is a select one of src in gallery class.

CodePudding user response:

It seems that the xpath selection was not correct way and I use keywords as for loop inside a list. Now it's working fine.

import time
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.chrome.service import Service
from webdriver_manager.chrome import ChromeDriverManager
driver = webdriver.Chrome(service=Service(ChromeDriverManager().install()))

artists = ["haiyu","cgnox"]
for artist in artists:
    url=f"https://www.artstation.com/{artist}"
    print(url)
    driver.get(url)
    driver.maximize_window()
    time.sleep(5)
    image=image =[im.get_attribute('src')for im in driver.find_elements(By.XPATH,'//*[@]/a/div/div/img')]
    print(image)

Output:

['https://cdna.artstation.com/p/users/avatars/000/023/520/medium/a627c2c5e1ba583e0243be0e2d8abfbf.jpg?1647858595', 'https://cdna.artstation.com/p/users/avatars/000/023/520/medium/a627c2c5e1ba583e0243be0e2d8abfbf.jpg?1647858595', 'https://cdna.artstation.com/p/users/avatars/000/023/520/medium/a627c2c5e1ba583e0243be0e2d8abfbf.jpg?1647858595', 'https://cdna.artstation.com/p/users/avatars/000/023/520/medium/a627c2c5e1ba583e0243be0e2d8abfbf.jpg?1647858595', 'https://cdna.artstation.com/p/users/avatars/000/023/520/medium/a627c2c5e1ba583e0243be0e2d8abfbf.jpg?1647858595', 'https://cdna.artstation.com/p/users/avatars/000/023/520/medium/a627c2c5e1ba583e0243be0e2d8abfbf.jpg?1647858595', 'https://cdna.artstation.com/p/users/avatars/000/023/520/medium/a627c2c5e1ba583e0243be0e2d8abfbf.jpg?1647858595', 'https://cdna.artstation.com/p/users/avatars/000/023/520/medium/a627c2c5e1ba583e0243be0e2d8abfbf.jpg?1647858595', 'https://cdna.artstation.com/p/users/avatars/000/023/520/medium/a627c2c5e1ba583e0243be0e2d8abfbf.jpg?1647858595', 'https://cdna.artstation.com/p/users/avatars/000/023/520/medium/a627c2c5e1ba583e0243be0e2d8abfbf.jpg?1647858595', 'https://cdna.artstation.com/p/users/avatars/000/023/520/medium/a627c2c5e1ba583e0243be0e2d8abfbf.jpg?1647858595', 'https://cdna.artstation.com/p/users/avatars/000/023/520/medium/a627c2c5e1ba583e0243be0e2d8abfbf.jpg?1647858595',

...so on

  • Related