gpt4 book ai didi

python - 在 WebDriver 中加载页面之前删除部分 HTML - Selenium & Python

转载 作者:行者123 更新时间:2023-11-28 18:28:09 25 4
gpt4 key购买 nike

我有一个脚本(在 <script></script> 标签内),每次加载页面时都会执行该脚本。是否可以在 WebDriver 中加载页面之前删除 WebElement 以防止该脚本执行?


我在想一些事情:

以某种方式获取原始 HTML 代码(可能获取源代码或其他东西),删除部分(使用 selenium 或解析器),将编辑后的代码“注入(inject)”回 Selenium(Firefox WebDriver 或可能是 PhantomJS)最后对该网站上的所有页面执行它。

是否可以这样做,或者这在设计上是不可能的?

最佳答案

如果安装 selenium-requests ,您可以对页面发出 GET 请求,处理加载的 html/etc,然后然后放置在选项卡中。

插入处理后的结果可能会很棘手,因为您可能还需要设置当前浏览器 URL 以匹配(简单地插入它会导致脚本跨域加载、相对路径等问题)——也许有一种覆盖(或允许覆盖)selenium 使用预处理信息接收的“获取”响应的方法

Selenium-Requests makes a request using the requests library that uses the running webdriver's cookies for that domain and emulates the default HTTP headers sent by that webdriver. The result is a low-level HTTP request and response created with the webdriver's state. This is needed because the Selenium interface is very high-level, and doing much more than opening pages and exploring the DOM is not really natively possible in Python.

关于python - 在 WebDriver 中加载页面之前删除部分 HTML - Selenium & Python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39672696/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com