At the moment I'm using the casper.evaluate function to do something like this (Using CoffeeScript)
bool = casper.evaluate ->
document.querySelector('button selector').checked
This seems to work fine but I'm wondering if there's a built in casper method that I could use to retrieve the checked property of a checkbox/radio element? I've tried using getElementAttribute()
but it won't detect 'checked' as an attribute. Also it is not listed in the JSON object retrieved from getElementInfo()
.
No, CasperJS doesn't provide a function that gives you the checked property of an element, but you can easily create your own:
The reason
getElementAttribute()
andgetElementInfo()
don't provide this is becausechecked
is a property of the HTML element and not an attribute. Attributes are usually static and don't change even when the property changes.