Skip to content

Instantly share code, notes, and snippets.

@muditlambda
Created June 4, 2020 14:34
// Click on Second Check box
IWebElement secondCheckBox = driver.FindElement(By.Name("li2"));
secondCheckBox.Click();
// Enter Item name
IWebElement textfield = driver.FindElement(By.Id("sampletodotext"));
textfield.SendKeys(itemName);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment