There is an HTML page in Selenium:
<span class="menu-title" style="color:#ff6613"> <strong>34535.23</strong> </span> You need to get the value 34535.23
Bye done using BeautifulSoup:
html = driver.page_source soup = BeautifulSoup(html, 'lxml') And further with the help of resular expressions. How to implement it using only Selenium?