The selector for the first checkbox is <html title='LA E&E - Self Service Portal' />
<webctrl parentid='medBillsStartMonth' tag='SPAN' isleaf='1' idx='1' />
The selector for the second and third checkbox have the idx value as 2 and 3.
Can i pass a variable in the idx selector to determine which check-box to check based on which column in excel is Y.
You can achieve it by typing this into the selector input (be sure to type it into the box, do not open the selector window): "<html title='LA E&E - Self Service Portal' /><webctrl parentid='medBillsStartMonth' tag='SPAN' isleaf='1' idx='"+indexVariable+"' />"
The trick is to make a valid string out of the selector, so be sure to put the quote’s in the correct places. Then you concatenate the string with the variable, as you would do when you would concatenate any other strings.