В index.html есть теги input, куда пользователь вводит переменные: login и password, после чего эти переменные нужно передать в python скрипт. Как это сделать?
index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>test</title>
</head>
<body>
<input id="login" type="text" placeholder="Login">
<input id="password" type="password" placeholder="Password">
<button id="button">Sign in</button>
</body>
</html>
main.py
from selenium import webdriver
driver = webdriver.Chrome(executable_path="C:\\Users\\AyneshorRinvaon\\Desktop\\chromedriver.exe")
try:
login = "Значение из input login"
password = "Значение из input password"
driver.get(url="ссылка на сайт")
except Exception as ex:
print(ex)
finally:
driver.close()
driver.quit()