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

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

Hi Brett,

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

@when('I enter item to add')
def enter_item_name(context):
    context.driver.find_element_by_id('sampletodotext').send_keys("Yey, Let's add it to list")