Не получается делать задержку для нажатие кнопки войти а именно
driver.find_element_by_css_selector("input[type='submit']").click()
в другие места работает тут увы
Блок авторизации
#Accounts
with open('acc.txt', 'r', encoding="utf8") as file:
lines = file.readlines()
for n in range(len(lines)):
line = lines.pop(0)
user, password = line.split(':')
time.sleep(0.5)
#Name // SednaWork
username_box = driver.find_element_by_css_selector("input[name='name']")
username_box.send_keys(Keys.CONTROL, 'a')
username_box.send_keys(user)
#Password // SednaWork
password_box = driver.find_element_by_css_selector("input[name='password']")
password_box.send_keys(Keys.CONTROL, 'a')
password_box.send_keys(password)
#Checkbox
checkboxes = driver.find_elements(By.XPATH, '//input[@type="checkbox"]')
for box in checkboxes:
try:
box.click()
except Exception:
pass
#Login
blya = driver.find_element_by_css_selector("input[type='submit']")
time.sleep(3600)
blya.click()