Answers for "click on button tag with only class selenium python"

0

click on button tag with only class selenium python

WebDriverWait(driver,10).until(EC.element_to_be_clickable((By.CSS_SELECTOR,"div.modal-footer button.btn.btn-danger.x[style='danger']"))).click()
Posted by: Guest on March-20-2021
0

click on button tag with only class selenium python

from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
Posted by: Guest on March-20-2021
0

click on button tag with only class selenium python

WebDriverWait(driver,10).until(EC.element_to_be_clickable((By.XPATH,"//div[@class='modal-footer']//button[@Class='btn btn-danger x' and text()='Maybe Later']"))).click()
Posted by: Guest on March-20-2021

Code answers related to "click on button tag with only class selenium python"

Python Answers by Framework

Browse Popular Code Answers by Language