The html code is
<td>
<i class="fas fa-arrow-down arrow-green"></i>
<span class="fs_buy">Strong Buy</span>
1.11
</td>
if I use this code
cccss ='//*[@id="fs_title_values"]/div[3]/table/tbody/tr[1]/td[5]'
about = driver.find_element_by_xpath(cccss)
RatingCurrentValue=about.text
print ('RatingCurrentValue', RatingCurrentValue)
I will get all text: RatingCurrentValue Strong Buy 1.11
My goal is to get only the 1.11 without the text in the span tag.
Please, help me.