icheck icon indicating copy to clipboard operation
icheck copied to clipboard

Selenium test

Open leon0707 opened this issue 8 years ago • 2 comments

How to click the radio button with icheck?

The <input type="radio" class="i-checks"> is not clickable in m selenium test.

leon0707 avatar Jun 03 '16 21:06 leon0707

Same problem for behat. Anyone solved it?

rmikalkenas avatar Jul 14 '16 13:07 rmikalkenas

Had this same issue with an icheck checkbox on python.

For single checkboxes, you could select the element by class, in my case it was: driver.find_element_by_class_name("icheckbox_class").click()

For option/radio buttons, selecting by xpath worked for me. I referred to this guide.

jcamores avatar Mar 07 '17 10:03 jcamores