I am having issues accessing the text saying '-175'.
website html (not sure how to post the screenshot!)
I failed when trying this:
driver.find_element_by_xpath('//div[@class="my-bets-history-possible-win ng-hide"]/span[2]').text
I have also enabled the disabled parts of the html by using this:
button = WebDriverWait(driver, 20).until(EC.presence_of_element_located((By.XPATH, '//input[@class="second-color ng-pristine ng-untouched ng-valid ng-not-empty"]')))
driver.execute_script('arguments[0].removeAttribute("disabled");', button)
Any further ideas?