-Version- Python : 3.6.8 Selenium : 3.141.0
I try this.
total_page = driver.find_element_by_xpath('Valid X Path').text
print(total_page)
but,
AttributeError : "dict' object has no attribute 'text'
I Knew.... The find_element~ function returns Dict type, not WebElement.
What could be wrong?


