Hi Everyone,
First time poster here although I've been referencing many posts from this forum for years. So much great info here.
I'm trying to submit package info to the UPS site to automatically return the shipping rates. For a single package I'm able to do it. When trying to set up for multiple packages I got jammed up and can't figure this out. Hopefully someone can help.
Below you can see the 'inspect element' code for the First, Previous, Next, and Last button options.
So far I've been referencing elements using the 'Name' or 'ID' fields, but this doesn't have any. So, how do I reference and click the "Next" button?
Thanks ahead of time for any help with this.
First time poster here although I've been referencing many posts from this forum for years. So much great info here.
I'm trying to submit package info to the UPS site to automatically return the shipping rates. For a single package I'm able to do it. When trying to set up for multiple packages I got jammed up and can't figure this out. Hopefully someone can help.
Below you can see the 'inspect element' code for the First, Previous, Next, and Last button options.
Code:
<button *******="PackageDetailJS.moveToFirst(3, packageDetailInputForm); return false;"><<</button>
<button *******="PackageDetailJS.moveToPrevious(3, packageDetailInputForm); return false;">< Prev</button>
<button class="next" *******="PackageDetailJS.moveToNext(3, packageDetailInputForm); return false;">Next ></button>
<button class="next" *******="PackageDetailJS.moveToLast(3, packageDetailInputForm); return false;">>></button>
So far I've been referencing elements using the 'Name' or 'ID' fields, but this doesn't have any. So, how do I reference and click the "Next" button?
Thanks ahead of time for any help with this.