How to set value in a text field for SpecFlow automation?

How to set value in a text field for SpecFlow automation?

Hi Mark!

In order to set value in a text field, you need to pass the below command in your SpecFlow test scripts.

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