@when('the "{input_name}" text input is set to "{value}"')
def type_in_text_input(context, input_name, value):
    selector = "input[name='%s'][type='text']" % (
        input_name,
    )