Auto fill web form

Eflats1

New member
Joined
May 19, 2019
Messages
2
Reaction score
0
Points
0
Excel Version(s)
2019
I am close to completing the macro I need to auto fill a web form. I understand the basics of the code and how they reference the html elements but I have been manually bypassing a certain part of the site after login due to the fact that the hover over drop downs don’t seem to have unique identifiers. The next page that I need to navigate to also creates a unique string each time at login so the use of obj.get”weburl” won’t work either unless your able to reference said string with code. Any suggestions?
 
Here is a copy of what the code looks like and also a screen shot

065df860-330b-4d3b-bf4c-7413042c52ff

<li class="dropdown">
<a href="#" data-toggle="dropdown">
Warranty/Guarantee Center
</a>
<ul class="nav collapse dropdown-menu">
<li class="dropdown-submenu">
<a href="#" data-toggle="dropdown">
Contractor Survey Results
<span class="dropdown-toggle glyphicon glyphicon-collapse-up pull-right hidden-lg"></span>
</a>
<ul class="nav collapse dropdown-menu" style="">
<li finalitemtobeclicked="">
<a href="#" id="5be9629c-383a-451a-9b8b-872e027907a9" itemtarget="_self" class="gamenutobeclicked" finalurl="/layouts/home?id=5be9629c-383a-451a-9b8b-872e027907a9" gamf="https://opgwpd01.gaf.com/cgi-bin/wsopgpd01_cgi.sh/WService=wsopgpd01/cczportal/mysurveys">
Survey Results
</a>


</li>

</ul>
</li>
<li class="dropdown-submenu">
<a href="#" data-toggle="dropdown">
Warranty/Guarantee Registration
<span class="dropdown-toggle glyphicon glyphicon-collapse-up pull-right hidden-lg"></span>
</a>
<ul class="nav collapse dropdown-menu" style="">
<li finalitemtobeclicked="">
<a href="#" id="945dd2f2-4cc4-4c19-bb8a-95b2fa308ee8" itemtarget="_self" class="gamenutobeclicked" finalurl="/layouts/home?id=945dd2f2-4cc4-4c19-bb8a-95b2fa308ee8" gamf="https://opgwpd01.gaf.com/cgi-bin/wsopgpd01_cgi.sh/WService=wsopgpd01/cczportal/warform">
Residential
</a>


</li>

</ul>
</li>
<li finalitemtobeclicked="">
<a href="#" id="86ab9ae0-1f0d-4c42-9f8b-57763fe37f8e" itemtarget="_self" class="gamenutobeclicked" finalurl="/layouts/home?id=86ab9ae0-1f0d-4c42-9f8b-57763fe37f8e" gamf="https://opgwpd01.gaf.com/cgi-bin/wsopgpd01_cgi.sh/WService=wsopgpd01/cczportal/warinq">
Warranty/Guarantee Inquiry
</a>


</li>
<li finalitemtobeclicked="">
<a href="#" id="e14191f9-9e11-4393-ab5e-5b4959cf539c" itemtarget="_self" class="gamenutobeclicked" finalurl="/layouts/home?id=e14191f9-9e11-4393-ab5e-5b4959cf539c" gamf="https://opgwpd01.gaf.com/cgi-bin/wsopgpd01_cgi.sh/WService=wsopgpd01/cczportal/waredit">
Warranty/Guarantee Edit
</a>


</li>

</ul>
</li>
 
Last edited:
Back
Top