我正在尝试使用urllib2重定向url。
>>> import urllib2
>>> page=urllib2.urlopen('http://acer.com')
>>> print page.geturl()
http://www.acer.com/worldwide/selection.html
>>>page=urllib2.urlopen('http://www.acer.com/worldwide/selection.html')
>>> print page.geturl()
http://www.acer.com/worldwide/selection.html
但当我在浏览器中打开http://www.acer.com/worldwide/selection.html
时,它会重定向到http://us.acer.com/ac/en/US/content/home#_ga=1.216787925.232352975.1435019296
如何使用urllib检测此重定向。
get_url()
不适用于所有重定向(例如JavaScript重定向)
你想达到什么目的?
像Selenium这样以PhantomJS作为后端的东西可能更适合这种情况。
对于屏幕截图,您可以使用save_screenshot()
,它是Selenium Webdriver 的一部分
使用selenium
开始。我正在使用chromedriver作为浏览器:
from selenium.webdriver import Chrome
cr = Chrome()
cr.get(url)
cr.save_screenshot('IMAGE_NAME.png')