I do software testing for my company's e-commerce platform, and am trying to automate our checkout process testing. For multiship option, each line item has a separate "Add an address" link. I can easily target the first one, but how can I target the 2nd/3rd/etc? I am NOT a developer, so any help would be very helpful. This is a snippit of the html for one of those links add an address link -
<div class="editaddress eleven">
<a class="add dialogify desktop" title="Add New Address" data-dlg-options="{ "width" : "385px", "dialogClass" : "address-add-edit multishipping", "title" : "Add New Address"}" href="https://XXXXXXXXXXX/COShippingMultiple-EditAddress?i=bcvVIiaagN4ckaaada3w22QH7J"> Add New Address </a>
All of the addresses are "editaddress eleven." Don't know who decided that :-)
Any help you can provide would be wonderful. I am trying my best to learn webdriver. Thanks!