I'm not sure how to describe the problems properly, but anyway, so I want to use mechanize to grab the form and getting the name of the input. however, when I parse using mechanize, it does not show the form name and the input name. and if I try manually by looking at the website, I have to inspect the element so I can get the input name, but still, it's dynamic, so each time I inspect the element, it's giving me different name. any idea? by the way, the website I'm trying to parse is https://www.ursa.ucla.edu/logon/logon.asp if anyone interested.
Here's what I've tried:
br = mechanize.Browser(factory=mechanize.RobustFactory())
br.open("https://www.ursa.ucla.edu/logon/logon.asp/")
br.select_form(nr=0)
print br.response().read()
Thanks in Advance, Richard.