1. 程式人生 > >python+selenium+autoit實現文件上傳

python+selenium+autoit實現文件上傳

分享 () 可執行文件 event avatar controls 執行 inf 驗證

問題

在做web端ui層自動化的時候會碰到文件上傳的操作,經常有朋友問到,這裏總結一下

解決方案

第一種:type=file的上傳文件,類似如下的

技術分享

使用類似這樣的代碼就可以完成:

driver.find_element(‘name‘,‘file‘).send_keys(‘./小強測試品牌.png‘)

第二種:就是第一種除外的,實現起來較為麻煩,這裏用到了autoit,大致步驟如下:

1、下載並安裝autoit,之後在開始菜單可以看到如下

技術分享

AutoIt Windows Info 用於識別Windows控件信息

Compile Script to.exe 用於將AutoIt生成 exe 執行文件

Run Script 用於執行AutoIt腳本

SciTE Script Editor 用於編寫AutoIt腳本

2、上傳功能如下

技術分享

3、識別元素,主要是上圖中的文件名輸入框和打開按鈕,使用AutoIt Windows Info完成,記錄結果如下:

文件名輸入框的class 為“Edit”,Instance為“1”

打開按鈕的class 為“Button”,Instance為“1”

4、編寫腳本,使用SciTE Script Editor,內容如下:

ControlFocus("文件上傳", "","Edit1")

WinWait("[CLASS:#32770]","",10)

ControlSetText("文件上傳", "", "Edit1","D:python_workspaceQiangSEAutopic小強測試品牌.jpg")

Sleep(2000)

ControlClick("文件上傳", "","Button1");

上述代碼中特別需要註意“文件上傳”字樣是你點擊上傳按鈕之後彈出的對話框的title,可能每個系統會不一樣

5、驗證腳本

保證頁面的上傳對話框打開,然後運行腳本tools>go

6、打開Compile Script to.exe工具,將其生成為exe可執行文件

技術分享

7、python腳本中調用

up=self.driver.find_element(‘class name‘,‘avatar-uploader-trigger‘)

up.find_element(‘class name‘,‘ant-btn‘).click()

os.system(‘D:\python_workspace\QiangSEAuto\upload.exe‘)

time.sleep(20)

其他

其實還有其他的解決方法,感興趣的自行研究吧,比如還可以利用如下的方式:

Python pywin32庫,識別對話框句柄,進而操作

SendKeys 庫

keybd_event 模擬按鍵

python+selenium+autoit實現文件上傳