I am trying to fill out a form that has a drop down menu for each order number.
<select name="order(889673519).box(1).shippingmethod" onclick="" onchange=""
id="order(889673519).box(1).shippingmethod"><option value=""
id="order(889673519).box(1).shippingmethod.blank"></option>
for each drop down menu the number inside the name css selector will change, so the first one is 889673519 but the second one will be
<select name="order(889711159).box(1).shippingmethod" onclick="" onchange=""
id="order(889711159).box(1).shippingmethod"><option value=""
id="order(889711159).box(1).shippingmethod.blank"></option>
What path do I use to select multiple elements with different names, so I can iterate through them selecting my options.