selenium 如何在Python文件资源管理器中自动单击“打开”按钮[已关闭]

dy1byipe  于 2022-12-13  发布在  Python
关注(0)|答案(1)|浏览(123)

已关闭。此问题需要details or clarity。当前不接受答案。
**想要改进此问题吗?**通过editing this post添加详细信息并阐明问题。

5天前关闭。
Improve this question
要将文件上传到chrome上的Web应用程序,我需要在文件资源管理器中输入保存文件的路径。
问题是:如何增强“文件名”字段,然后单击“打开”谢谢

nhhxz33t

nhhxz33t1#

我想你问的是如何在python中自动化窗口输入和按钮点击
如果是这种情况,请尝试使用win32com.client from Dispatch
下面是一个关于如何使用它的一般性例子。没有更多的信息,很难直接回答你的问题

from win32com.client import Dispatch

# Create a Dispatch object for the active window
obj = Dispatch("WScript.Shell")

# Enter the data in the first text box
obj.SendKeys("My Text Data")

# Tab over to the next text box
obj.SendKeys("{TAB}")

# Enter the data in the next text box
obj.SendKeys("My More Text Data")

# Tab over to the next text box
obj.SendKeys("{TAB}")

# Click the OK button
obj.SendKeys("{ENTER}")

相关问题