Feb-17-2018, 07:34 PM
So I've been trying to click this button using mechanize/anything else (except selenium - I don't want to use selenium due to it being GUI-based) but haven't found a way using Python.
Here's the HTML code:
I want to click
, but it's not a usual HTML button to be found with a quick google search.
(Page I'm working on is https://www.nike.com/launch/)
Any idea how to get around this?
Here's the HTML code:
1 |
<div class = "ncss-col-sm-6 pr7-sm pt2-sm pb2-sm ta-sm-r" ><a tabindex = "0" aria - label = "Join or Log In" class = "js-log-in small text-color-grey d-sm-ib va-sm-m mr4-sm" >Join / Log In< / a><a href = "http://help-en-us.nike.com/app/home/country/us" ><figcaption tabindex = "0" aria - label = "Help" class = "small text-color-grey d-sm-ib va-sm-m mr4-sm" > Help < / figcaption>< / a><a href = "#" class = "js-lang-tunnel" ><img class = "test-flag d-sm-ib va-sm-m" alt = "us" src = "//content.nike.com/content/dam/nike/global/country_flags/us_sml.png" >< / a>< / div> |
1 |
Join or Log In |
(Page I'm working on is https://www.nike.com/launch/)
Any idea how to get around this?