I'm facing some issues with the loginpage of my recipe. I assume the Webpage identify mechanize. To check that I would like to see the content of the loginpage wich is loaded. I try to save it, but I did not get it as I don't know how to handle.
my try:
Code:
br.open(loginURL)
file = open(r"c:/temp/loginpage.txt","w")
file.write(br._html) # or br.content I don't know...
file.close()
Thanks for any help.
BR MP