After I select a tag when I try to get HTML contents. it is converting the values such as 0.102 to 0,102. There are some values like 1,203 they remain the same. but float type is being wrongly converted.
I'm new so I haven't tried much
element = driver.find_element_by_css_selector("div.widget-equity-technical-key-data table")
html = element.get_attribute('innerHTML')
say a column with values 1,201 and 0.102 expected at least 1201 and 0.102 but the actual output is 1,201 and 0,102