I just started web scrapping and decided to play around with Selenium. Below is the code I wrote to just login to the website and attempt to grab some data.
from selenium import webdriver driver = webdriver.Chrome(r"C:\Users\hones\Desktop\MWO data\chromedriver.exe") login_screen = driver.get("https://mwomercs.com/profile/leaderboards") username = driver.find_element_by_id("email").send_keys("login_here") password = driver.find_element_by_id("password").send_keys("some_password") submit = driver.find_element_by_xpath("//*[@id='loginForm']/form/button").click() stats = driver.find_elements_by_xpath("//*[@id='contentBody']/div[2]/table/tbody/tr[1]") print(stats)Everything works fine and no error message is presented. However, instead of returning the number I am trying to scrape, it returns something entirely different and it is displayed below.
Output:[<selenium.webdriver.remote.webelement.WebElement (session="ebff9ddc3b927111b738557f1767aa58", element="d02991c8-c093-4d57-97e7-53b5bc8f75bd")>]
How would I go about getting past this and getting the data I am after? Thanks in advance for any feedback that is given.
Larz60+ write Nov-13-2024, 08:45 AM:
Please post all code, output and errors (it it's entirety) between their respective tags. Refer to BBCode help topic on how to post. Use the "Preview Post" button to make sure the code is presented as you expect before hitting the "Post Reply/Thread" button.
Tags have been added this time.
Please post all code, output and errors (it it's entirety) between their respective tags. Refer to BBCode help topic on how to post. Use the "Preview Post" button to make sure the code is presented as you expect before hitting the "Post Reply/Thread" button.
Tags have been added this time.