Python Forum
Selenium returning web element instead of desired text
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Selenium returning web element instead of desired text
#1
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.
Reply
#2
Quote:[<selenium.webdriver.remote.webelement.WebElement (session="ebff9ddc3b927111b738557f1767aa58", element="d02991c8-c093-4d57-97e7-53b5bc8f75bd")>]

This is being return by your print statement,
stats = driver.find_elements_by_xpath("//*[@id='contentBody']/div[2]/table/tbody/tr[1]")
print(stats)
The above method will return all the possible elements which matches with the xpath you mentioned in list form. You can loop through that variable stats and print each element to see
Reply
#3
Hello,

I have just found this post and run into the same issue.

The fix is pretty easy for anyone else who comes across this post with the not so helpful (in my opinion anyway!) answer previously.

If, like me you are just trying to get some information scraped from a website but it returns the session ID, all you need to do is put
.text
at the end of your scraping request.

So for example if you wanted to scrape https://example.com then you would do the following

from selenium import webdriver
from selenium.webdriver.common.by import By

# create webdriver object
driver = webdriver.Firefox()

#get website 
driver.get("https://example.com")

#get element
element = driver.find_element(By.CLASS_NAME, "p").text

print(f"the element I want is {p}")
Output:
the element I want is This domain is for use in illustrative examples in documents. You may use this domain in literature without prior coordination or asking for permission.
Now, clearly this is a redundant example but it works. I found this information on the selenium docs here https://www.selenium.dev/documentation/w...formation/
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Selenium suddenly fails to find element Pavel_47 3 9,619 Sep-04-2022, 11:06 AM
Last Post: Pavel_47
  selenium wait for text question Larz60+ 3 3,619 Oct-25-2021, 09:50 AM
Last Post: Larz60+
  BeautifulSoup returning text as N/A tantony 6 4,059 Sep-09-2021, 12:59 PM
Last Post: tantony
  Path to the desired value Irv1n 2 2,809 Jul-25-2021, 05:30 AM
Last Post: ndc85430
  How to get specific TD text via Selenium? euras 3 12,311 May-14-2021, 05:12 PM
Last Post: snippsat
  Selenium extract id text xzozx 1 2,734 Jun-15-2020, 06:32 AM
Last Post: Larz60+
  Help extracting text from element jpdallas 7 5,017 Apr-30-2020, 06:26 AM
Last Post: anbu23
  Getting text using Selenium WiPi 10 7,165 Apr-27-2020, 08:58 AM
Last Post: WiPi
  Clicking on element not triggering event in Selenium Python (Event Key is not in data dkaeloredo 2 5,225 Feb-16-2020, 05:50 AM
Last Post: dkaeloredo
  Selenium locating an element. JokerTux 3 3,485 Dec-28-2019, 08:50 AM
Last Post: snippsat

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020