标签: python mechanize
执行AJAX页面代码后,浏览器将打开另一个URL(使用window.location.href指定)。如何使用mechanize获取它?
window.location.href
import mechanize response = mechanize.urlopen(url) return response.geturl()
会返回初始网址。
答案 0 :(得分:2)
Mechanize不处理Javascript。请尝试使用Selenium代替