Created
June 4, 2020 14:34
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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