How to set value in a text field with Python - Unittest?

Can I set value in a text field with Python - Unittest?

Hi Brett,

You can refer to the commands below, and you can also find this in our support document online:

Enter item in textfield

    textfield = driver.find_element_by_id("sampletodotext")
    textfield.send_keys("Yey, Let's add it to list")