There is html where I can't find correct way to click on button via selenium on python.
So, I need to click on
class="standart-wallet_standartWalletText__zjyj3"
via selenium but it seems nothing work.
What I tried:
wait.until(EC.element_to_be_clickable((By.XPATH, "//span[text()='standard wallet']")))
wait.until(EC.element_to_be_clickable((By.XPATH, "//span[starts-with(@class,'standart-wallet_standartWalletText')]"
wait.until(EC.element_to_be_clickable((CSS_SELECTOR, ...)))
wait.until(EC.element_to_be_clickable((CLASS_NAME, ...)))
and so on...
What I got:
raise TimeoutException(message, screen, stacktrace)
So, please help ¯_(ツ)_/¯
The element is probably hidden, as it's nested in accordion. So it won't get clickable status until getting expanded. You can try to implement a function that expands it or simply use EC.presence_of_element_located() instead.