到目前为止,这是我的代码:
from selenium import webdriver
driver = webdriver.Chrome()
driver.get("https://api.instagram.com/oauth/authorize/?client_id=cb009a1b2b4601317355f&redirect_uri=http://pythondev.insta.com/instagramredirect.html&response_type=code")
print driver.current_url
即使浏览器在我使用driver.get()
加载网址后重定向到其他网址当然print driver.current_url
,但是打印的网址是原始网址而不是重定向网址。有没有办法让Selenium“看到”它打开的浏览器中的实际当前URL?