How to set value in a text field with Serenity?

How can I set value in a text field with Serenity?

Hello Alex,

You need to pass the below command to set value in a text field with Serenity:

driver.get("https://www.lambdatest.com")
  element = driver.findelementbyid("Username")
element.sendkeys("some text")