I need to know how to set value in a text field using MSTest.
Hello Dipen,
To add the text field, you can refer and add the following syntax below:
// Enter Item name
IWebElement textfield = driver.FindElement(By.Id("sampletext"));
textfield.SendKeys(itemName);