How to get the checkbox value

@balkishan

You can see the “src” attribute gives you check and nocheck information.

In Get Attribute activity, write “src” to the attribute name and assign an output variable.

outputVariable.Split("/"C).Last()

will give you check.gif / uncheck.gif

you can remove the “.gif” part by adding “.Replace(”.gif",“”)" at the end of the code.

Cheers!

3 Likes