Automate Login vs Payload
Automate Login using Selenium
driver = webdriver.Chrome(options=options)
driver.get(url)
username = driver.find_element(By.ID, "email")
username.send_keys("admin@example.com")
password = driver.find_element(By.ID, "password")
password.send_keys("password")
submit_button = driver.find_element(By.ID,"submit-button")
submit_button.click()