I am trying to login to the website. But I couldn't fill username and then password. I am stucked on the step filling in a username. I assume that I am picking the wrong class name, but I don't know for sure. I would appreciate your help.
my code:
#
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from webdriver_manager.chrome import ChromeDriverManager
driver = webdriver.Chrome(ChromeDriverManager().install())
url = "https://portal.spryngsms.com/login?redirect=%2F"
username = "cosmos"
password = "1234"
driver.get(url)
driver.find_element_by_class_name('form__input-wrapper tw-mb-16 ').send_keys(username)
