admin管理员组文章数量:1344210
I'm using Playwright with Python, and my web app has a custom preview window for showing images or PDF files in our system. When I click an image it will open a window and display the image in the window. I need to download the image locally. For images, our preview has no button to initiate the download, so the user needs to right-click the viewer and save it as a file. Playwright doesn't seem to let us do this, based on what I've read. I did find that this code below works to except for the part that interacts with the browser's context menu (if I manually press the down and enter while the script is at this point it will work). Since the only way I know how to press keys is to use the page object, it looks like the browser's context menu is outside of this.
How can I get this to work? Or asking another way, how to send keypresses to the active window or just to what has focus? And asking a third way, is there a smarter way to do this?
# Start waiting for the download
with self.page.expect_download() as download_info:
# Perform the action that initiates download
div_viewer.click(button='right')
sleep(1)
self.page.keyboard.press('ArrowDown')
sleep(1)
self.page.keyboard.press('Enter')
download = download_info.value
# Wait for the download process to complete and save the downloaded file somewhere
download.save_as(save_path)
本文标签: pythonHow to save the image displayed on screenStack Overflow
版权声明:本文标题:python - How to save the image displayed on screen? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743743295a2531291.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论