gpt4 book ai didi

python - 使用 python selenium 下载

转载 作者:太空宇宙 更新时间:2023-11-04 04:18:36 25 4
gpt4 key购买 nike

我想从网站下载文件。在该网站中,我单击一个按钮打开一个小子窗口,该窗口有一个按钮,单击该按钮可将文件下载到目录 path_here。这是我的解决方案:

from selenium import webdriver
from selenium.webdriver.chrome.options import Options

chrome_options = Options()

chrome_options.add_argument('--dns-prefetch-disable')
chrome_options.add_experimental_option("prefs", {
"download.default_directory": r'path_here',
"download.prompt_for_download": False,
"download.directory_upgrade": True,
"safebrowsing.enabled": True
})
driver = webdriver.Chrome("./chromedriver", options=chrome_options)

website = "https://www.chess.com/ccc"
driver.get(website) # loads the page
# This closes a sub-window that opens automatically
element = driver.find_element_by_class_name("form-button-component")
element.click()

driver.find_element_by_class_name("icon-download").click()
download = driver.find_element_by_class_name('download-pgn')
# Click to download
download.find_element_by_class_name("btn").click()

这应该可以,但没有像我预期的那样下载文件。为了完整起见,我添加了一个屏幕截图:

description

按钮为下载游戏(PGN),其文本通过print(download.find_element_by_class_name("btn").text)获取

最佳答案

In the website I click on a button that opens a small sub-window

在这里您提到您正在打开一个新的子窗口,您必须在其中单击按钮进行下载。但是你没有切换到那个窗口。因此无法找到该元素。

使用 driver.window_handles 获取打开窗口的句柄并使用 driver.switch_to_window() 切换到该窗口,然后尝试点击按钮进行下载。

您可以在此 stackoverflow 中了解如何在 python selenium 中处理多个窗口 link .

编辑:

看来您的代码中存在一些问题。就像棋盘旁边的下载按钮定位器和后面那个定位器是不正确的。我已经使用正确的 xpath 更正了定位器,并且对 chrome_options 也做了一些小改动。您只需将 download.defualt_directory 更改为您机器中的路径,下面的代码就可以运行:

from selenium import webdriver
from selenium.webdriver.chrome.options import Options

chrome_options = Options()

chrome_options.add_experimental_option("prefs", {
"download.default_directory": r"C:\Users\Thanthu Nair\Downloads\Test",
"download.prompt_for_download": False,
"download.directory_upgrade": True,
"safebrowsing.enabled": True
})
driver = webdriver.Chrome("./chromedriver", options=chrome_options)

website = "https://www.chess.com/ccc"
driver.get(website) # loads the page
driver.maximize_window()

# This closes a sub-window that opens automatically
element = driver.find_element_by_class_name("form-button-component")
element.click()

download = driver.find_element_by_xpath("//i[@title='Download']")
download.click()

# Click to download
download.find_element_by_xpath("//button[normalize-space()='Download Game (PGN)']").click()

关于python - 使用 python selenium 下载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54955634/

25 4 0
文章推荐: css - 关于分离的 CSS 文件
文章推荐: python - 运行 python 的 Unix 进程
文章推荐: HTML 标签!删除新段落</a> </div> <div> 文章推荐: <a class="a-tag" href="/article/22/2780373/detail.html" target="_blank">linux - geniso 与 hfsbless 不工作</a> </div> </div> <div class="content-p"> <ul class="like-article"> <li> <a class="a-tag" href="/article/23/7561422/detail.html" target="_blank">selenium - Selenium IDE、Selenium RC 和 Selenium WebDriver 之间有什么区别?</a> <p>Selenium IDE、Selenium RC 和 Selenium WebDriver 有什么区别;我们可以在什么样的项目中使用它们?任何建议将不胜感激。 最佳答案 Selenium IDE 是一</p> </li> <li> <a class="a-tag" href="/article/23/8336598/detail.html" target="_blank">selenium - 如何压缩 Selenium 客户端和 Selenium 服务器之间的传输</a> <p>我的 Selenium 服务器在远程服务器上运行。我从我的本地 PC 启动我的 Selenium 脚本,它从网站获取数据。 例如,我的 Selenium 脚本执行这段 JS 代码: JSON.stri</p> </li> <li> <a class="a-tag" href="/article/23/7005931/detail.html" target="_blank">selenium - "//div[.//a[text()=' SELENIUM'] ]"and "//div[//a[text() ='SELENIUM' ]]"在 Selenium xpath中有什么区别</a> <p>Selenium 中“//div[.//a[text()='SELENIUM']]”和“//div[//a[text()='SELENIUM']]”有什么区别xpath。 有人可以澄清我在 xpath</p> </li> <li> <a class="a-tag" href="/article/23/8357918/detail.html" target="_blank">selenium - Selenium 中每个测试的多个断言与单个断言?</a> <p>我正在创建自动冒烟测试。我读到在单元测试中使用多个断言不是一个好的做法,这条规则是否也适用于使用 selenium 的 webdriver 测试? 在我的冒烟测试中,有时我会使用 20 多个断言来验证</p> </li> <li> <a class="a-tag" href="/article/23/8198597/detail.html" target="_blank">selenium - selenium IDE中添加两个变量</a> <p>我在一个变量中存储了一个值,在另一个变量中存储了第二个值,现在我想将这两个数字相加。我无法做到这一点,我尝试过下面的代码,但它不起作用 store 6 w sto</p> </li> <li> <a class="a-tag" href="/article/23/8109523/detail.html" target="_blank">selenium - Selenium 中回车键和回车键的区别</a> <p>Selenium 中的回车键和回车键有什么区别? This related SO answer并且提供的链接说明它们是不同的。我还注意到,在使用 Firefox 24.2 时,回车键将发送一个 HTM</p> </li> <li> <a class="a-tag" href="/article/23/8072573/detail.html" target="_blank">selenium - 如何使用 Selenium 3 设置 Selenium Grid</a> <p>以下是我遇到异常的详细信息: 当我使用以下命令启动节点时,出现如下错误: F:\SeleniumGrid\Jars>java -jar selenium-server-standalone-3.0.0</p> </li> <li> <a class="a-tag" href="/article/23/8032060/detail.html" target="_blank">selenium - 是否有 Selenium 2 版本的 Selenium IDE?</a> <p>我是 的新手 Selenium 我对版本号有点困惑。 Selenium 2.0 2011年发布。我刚刚下载了 Selenium IDE Firefox 扩展,版本为 1.7.2 .是否还有 IDE 的</p> </li> <li> <a class="a-tag" href="/article/23/7940317/detail.html" target="_blank">selenium - 我如何停止断言失败时关闭浏览器窗口的代码接收/ Selenium ?</a> <p>我正在使用 Selenium 运行Codeception 2。我可以看到 Selenium 打开了浏览器并运行了测试。然后,我从代码接收中得到一个错误,即存在失败的断言。 我知道有一个HTML文件可以</p> </li> <li> <a class="a-tag" href="/article/23/7782771/detail.html" target="_blank">selenium - Selenium 3的新功能是什么</a> <p>Closed. This question needs to be more focused。它当前不接受答案。 想要改善这个问题吗?更新问题,使它仅关注editing this post的一个问题。</p> </li> <li> <a class="a-tag" href="/article/23/7725739/detail.html" target="_blank">selenium - Selenium 运行中如何关闭弹出窗口?</a> <p>我想关闭弹出窗口(已知的窗口名称),然后返回到原始窗口。 我该怎么办? 如果我无法获得窗口中关闭按钮的常量。那么有没有达到目标的一般行为? 最佳答案 你有没有尝试过: selenium.Close()</p> </li> <li> <a class="a-tag" href="/article/23/7482890/detail.html" target="_blank">selenium - 错误后如何继续使用webdriver/selenium</a> <p>我正在用webdriver做一个测试机器人。我有一个场景,它单击一个按钮,打开一个新窗口,并且它通过特定的xpath搜索元素,但是有时没有这样的元素,因为可以将其禁用,并且出现此错误:org.open</p> </li> <li> <a class="a-tag" href="/article/23/7408288/detail.html" target="_blank">selenium - Selenium :如何等待选择中的选项被填充?</a> <p>我是第一次使用Selenium,对这些选项不知所措。我在Firefox中使用IDE。 当我的页面加载时,它随后通过JSONP请求获取值,并在其中填充选择中的选项。 我如何让Selenium等待选择中的</p> </li> <li> <a class="a-tag" href="/article/23/7402962/detail.html" target="_blank">selenium-webdriver - 如何在运行 Selenium Selenium nightwatch.js测试时保持打开的开发人员工具?</a> <p>我开始使用nightwatch.js编写e2e测试,我注意到我想在目标浏览器的控制台(开发人员工具)中手动检查一些错误。但总是在我打开开发者控制台时,浏览器会自动关闭它。这是selenium还是nig</p> </li> <li> <a class="a-tag" href="/article/23/7270422/detail.html" target="_blank">selenium - Selenium 没有这种元素异常</a> <p>我正在尝试使用以下方式刮除Glassdoor的评论: https://github.com/MatthewChatham/glassdoor-review-scraper 但是我得到了错误并且不知道如</p> </li> <li> <a class="a-tag" href="/article/23/7151884/detail.html" target="_blank">selenium - Selenium Grid总是执行我的测试的多余实例</a> <p>背景 我设置了一个Selenium Grid项目,以在两种不同的浏览器Chrome和Firefox中执行测试。我正在使用Gradle执行测试。该测试将成功执行两次,一次按预期在Chrome中执行,一次</p> </li> <li> <a class="a-tag" href="/article/23/7003121/detail.html" target="_blank">selenium - 使用 phpunit/selenium 保持 selenium 浏览器打开</a> <p>当测试失败时,运行 selenium 测试的浏览器将关闭。这在尝试调试时没有帮助。我知道我可以在失败时选择屏幕截图,但如果没有整个上下文,这并没有帮助。在浏览器仍然可用的情况下,我可以回击并检查发生了</p> </li> <li> <a class="a-tag" href="/article/23/6998088/detail.html" target="_blank">selenium - 使用 Selenium Web 驱动程序或 selenium RC</a> <p>使用 Selenium Web 驱动程序而不是 Selenium RC 启动新的测试框架是个好主意吗?对于 Selenium Web 驱动程序,并非所有 Selenium 方法都已实现。那么使用 Se</p> </li> <li> <a class="a-tag" href="/article/23/6995513/detail.html" target="_blank">selenium - Selenium 标识符的建议命名约定</a> <p>我使用 selenium 页面对象模型来定义所有页面元素。我对元素命名所遵循的命名约定不太相信,并且感觉太长了。请对此提出建议。 @FindBy(xpath = "//tbody[@id='tabvi</p> </li> <li> <a class="a-tag" href="/article/23/6439507/detail.html" target="_blank">selenium - 等待处理程序注册 - selenium</a> <p>有一个带有按钮的 html 页面,我的 Selenium 测试正在测试,当单击按钮时,会执行一个操作。 问题是,看起来点击发生在 javascript 执行之前 - 在处理程序绑定(bind)到页面之</p> </li> </ul> </div> </div> <div class="resource col-xs-3 col-sm-3 col-md-3 col-lg-3"> <div class="content-p content-p-comment"> <div class="phone-current phone-current-float"> <img alt="" src="/images/phone/manphone.jpeg"> </div> <div class="phone-current-float phone-current-style"> 太空宇宙 </div> <div class="phone-current-summary"> <span><strong>个人简介</strong></span> <p> 我是一名优秀的程序员,十分优秀! </p> </div> </div> <div class="content-p content-p-comment"> <article class="p-list"> <div class="art-margin" style="border-bottom: 1px solid #f3f0f0; padding-bottom: 5px;"> <strong>作者热门文章</strong> </div> <ul class="recomment-list-user"> <li><a class="a-tag" href="/article/22/2177999/detail.html" target="_blank">android - 多次调用 OnPrimaryClipChangedListener</a></li> <li><a class="a-tag" href="/article/22/2177998/detail.html" target="_blank">android - 无法更新 RecyclerView 中的 TextView 字段</a></li> <li><a class="a-tag" href="/article/22/2177997/detail.html" target="_blank">android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0</a></li> <li><a class="a-tag" href="/article/22/2177996/detail.html" target="_blank">android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色</a></li> </ul> </article> </div> <div class="content-p content-p-comment"> <article class="p-list"> <div class="art-margin" style="border-bottom: 1px solid #f3f0f0; padding-bottom: 5px;"> <strong>滴滴打车优惠券免费领取</strong> </div> <img alt="滴滴打车优惠券" src="/images/ad/didiad.png" width="210px" onclick="window.open('/ad/didi', '_blank')"> </article> </div> <div class="content-p content-p-comment"> <article class="p-list"> <div class="art-margin" style="border-bottom: 1px solid #f3f0f0; padding-bottom: 5px;"> <strong>全站热门文章</strong> </div> <ul class="recomment-list-user"> <li><a class="a-tag" href="/article/92/8828595/detail.html" target="_blank">利用mybatis拦截器记录sql,辅助我们建立索引(一)</a></li> <li><a class="a-tag" href="/article/92/8828594/detail.html" target="_blank">C#实现Winform程序在系统托盘显示图标&开机自启动</a></li> <li><a class="a-tag" href="/article/92/8828593/detail.html" target="_blank">《痞子衡嵌入式半月刊》第116期</a></li> <li><a class="a-tag" href="/article/92/8828592/detail.html" target="_blank">k8s列出所有未配置探针的deployment</a></li> <li><a class="a-tag" href="/article/92/8828591/detail.html" target="_blank">unityassetbundle加载图集的所有sprite图片</a></li> <li><a class="a-tag" href="/article/92/8828590/detail.html" target="_blank">终于决定:把自己家的能源管理系统开源了!</a></li> <li><a class="a-tag" href="/article/92/8828589/detail.html" target="_blank">了解ASP.NETCore中的中间件</a></li> <li><a class="a-tag" href="/article/92/8828588/detail.html" target="_blank">【源码】Kafka订制协议如何处理粘拆包</a></li> <li><a class="a-tag" href="/article/92/8828587/detail.html" target="_blank">OpenCL入门笔记</a></li> <li><a class="a-tag" href="/article/92/8828586/detail.html" target="_blank">深入解析SpringAI系列:以OpenAI与Moonshot案例为例寻找共同点</a></li> </ul> </article> </div> </div> </div> </div> <div class="foot-font" style="border-top: 1px solid #f3f0f0; margin: auto; padding: 15px; background-color: #474443" align="center"> <a href="https://beian.miit.gov.cn/#/Integrated/index" target="_blank"><span class="color-txt-foot">Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号</span></a> <br/> <a href="/" target="_blank"><span class="color-txt-foot">广告合作:1813099741@qq.com</span></a> <a href="http://www.6ren.com" target="_blank"><span class="color-txt-foot">6ren.com</span></a> </div> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?d1cb9c185f1642d6f07e22cafa330c45"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?d46c26b2162aface49b8acf6cb7025e1"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> </body> </html>