Selenium Python - Advanced Patterns
Analyze this Selenium Python snippet for CAPTCHA handling:
What is the main issue with this code?
from selenium import webdriver
driver = webdriver.Chrome()
driver.get('https://example.com')
input('Solve CAPTCHA then press Enter')
driver.find_element('id', 'submit').click()What is the main issue with this code?
