How can I select the following check-box, if I only have these attributes?
<input style="font-size: 30%" onclick="remove_descriptions( this );" onchange="remove_descriptions( this );" type="checkbox">
I have tried several ways using xPath but I have had no luck.
driver.findElement(By.xpath("//input[@type='checkbox']"));
UPDATE
I cannot edit the HTML or CSS files.
findElement(By.className("myCheckbox"))