How to print value for the class="valueValue-3kA0oJs5" from below snippet, Tried below things but no luck.
<div class="valuesAdditionalWrapper-3BfAIuML">
<div class="valueItem-3JDGGSt_">
<div class="valueValue-3kA0oJs5" style="color: rgb(128, 0, 128);">46.2625</div>
</div>
</div>
Using class name:
driver.find_element_by_class_name("valueValue-3kA0oJs5")
using xpath:
driver.find_element_by_xpath('//*[@class="valueValue-3kA0oJs5"]')
driver.find_element_by_xpath('//div[@class="valueValue-3kA0oJs5"]')
Please help me on this.