How to click on an element while performing SpecFlow testing?

How to click on an element while performing SpecFlow testing ?

Hi Mark!

You need to use the click() command in SpecFlow for clicking on an element. The command is shown as below:

driver.get("https://www.lambdatest.com")
element = driver.findElementById("Username").click();