drgullin / icheck

Highly customizable checkboxes and radio buttons (jQuery & Zepto)
http://fronteed.com/iCheck
7.39k stars 1.63k forks source link

Selenium test #338

Open leon0707 opened 8 years ago

leon0707 commented 8 years ago

How to click the radio button with icheck?

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

rmikalkenas commented 7 years ago

Same problem for behat. Anyone solved it?

jcamores commented 7 years ago

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.