Let's say I'm in a page and it has a span class called "someId", how do I search for this and get the Id that's in here.
<span class="someId">what is in here</span>
for example
<span class="someId">123456</span>
I want something that does this
element = driver.find_element('someId')
print(element) -> 123456