我们在 tomcat 服务器上运行了 Java 应用程序,我编写了一个简单的脚本来登录,但我不允许我登录它只是挂在br.open
步骤上。
#!/usr/bin/python
import mechanize
br=mechanize.Browser()
br.open('https://www.example.com')
br.select_form(nr=0)
br['user[login]']= user1
br['user[password]']= Pass1
br.submit()
br.retrieve('https://www.example.com/','page1.html')
当我在 python shell 上以交互方式运行它时,它挂在br.open
>>> br.open('https://www.example.com/')
hanging here.....
机械化能用j_security_check
吗?或java基础应用程序?