Watir to access combobox

I’m new to watir and IE Developer Toolbar so please bear with me.

I have a combobox in a website that i want to set. The ‘Select Element
by
Click’ feature in IE Developer Toolbar doesn’t work on this combobox.
Does that mean that I can’t set the combobox?

If I can set it, how? would appreciate code snippets.

On Sep 21, 7:18 pm, Sean N. [email protected] wrote:

I’m new to watir and IE Developer Toolbar so please bear with me.

I have a combobox in a website that i want to set. The ‘Select Element by
Click’ feature in IE Developer Toolbar doesn’t work on this combobox.
Does that mean that I can’t set the combobox?

If I can set it, how? would appreciate code snippets.

If you know the name of the select list you can try this

ie.select_list(:name, ‘name’).select_value(‘value’)

Luis

On Sep 21, 7:18 pm, Sean N. [email protected] wrote:

I’m new to watir and IE Developer Toolbar so please bear with me.

I have a combobox in a website that i want to set. The ‘Select Element by
Click’ feature in IE Developer Toolbar doesn’t work on this combobox.
Does that mean that I can’t set the combobox?

If I can set it, how? would appreciate code snippets.

If you know the name of the select list you can try this

ie.select_list(:name, ‘name’).select_value(‘value’)

Luis