Selenium Python - Advanced Patterns
Given this code snippet, what will be printed?
Assuming the button has the text 'Send'.
from selenium.webdriver.common.by import By button = driver.find_element(By.CSS_SELECTOR, 'button.submit') print(button.text)
Assuming the button has the text 'Send'.
