What I\'m trying to do is click on (or off) any of the checkboxes on my page. As you can see from the HTML, each checkbox element would appear to have a unique identifier but w
Use the following CSS Selector for that:
.url-field-toggle[data-yesno-name='Url_Transaction_Out']
Code is:
driver.FindElement(By.CssSelector("url-field-toggle[data-yesno-name='Url_Transaction_Out']")).Click();
Hope it helps you!