How can I get a intermediate URL from a redirect chain from Selenium using Python?(如何使用 Python 从 Selenium 的重定向链中获取中间 URL?)
问题描述
我正在使用 Selenium 和 Python API 和 Firefox 来做一些自动的事情,这是我的问题:
I'm using Selenium with Python API and Firefox to do some automatic stuff, and here's my problem:
- 点击原始页面上的链接,比如说在页面 a.com
- 我被重定向到 b.com/some/path?arg=value
- 我马上又被重定向到最终地址 c.com
那么有没有办法使用 Selenium Python API 获取中间重定向 URL b.com/some/path?arg=value?我试过 driver.current_url
但是当浏览器在 b.com 上时,似乎浏览器仍在加载中,并且只有在最终地址 c 时才返回结果.com 已加载.
So is there a way to get the intermediate redirect URL b.com/some/path?arg=value with Selenium Python API? I tried driver.current_url
but when the browser is on b.com, seems the browser is still under loading and the result returned only if the final address c.com is loaded.
另一个问题是,有没有办法将一些事件处理程序添加到 Selenium 以进行 URL 更改?Phantomjs 有能力,但我不确定 Selenium.
Another question is that is there a way to add some event handlers to Selenium for like URL-change? Phantomjs has the capacity but I'm not sure for Selenium.
推荐答案
回答我自己的问题.
如果重定向链很长,可以考虑尝试@alecxe 和@Krishnan 提供的方法.但在这种特定情况下,我发现了一个更简单的解决方法:
If the redirect chain is very long, consider to try the methods @alecxe and @Krishnan provided. But in this specific case, I've found a much easier workaround:
当页面最终登陆 c.com 时,使用driver.execute_script('return window.document.referrer')
获取中间网址
When the page finally landed c.com, use
driver.execute_script('return window.document.referrer')
to get the intermediate URL
这篇关于如何使用 Python 从 Selenium 的重定向链中获取中间 URL?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用 Python 从 Selenium 的重定向链中获取中间 URL?
基础教程推荐
- 筛选NumPy数组 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01