selenium藉助AutoIt識別上傳(下載)詳解 《selenium2 python 自動化測試實戰》 --new

 

  AutoIt目前最新是v3版本,這是一個使用相似BASIC腳本語言免費軟件,它設計用於Windows GUI(圖形用戶界面)中進行自動化操做。它利用模擬鍵盤按鍵,鼠標移動和窗口/控件的組合來實現自動化任務。 css

     官方網站:https://www.autoitscript.com/site/html

    從網站上下載AutoIt並安裝,安裝完成在菜單中會看到圖4.13的目錄:python

                            圖4.13  AutoIt菜單

AutoIt Windows Info   用於幫助咱們識Windows控件信息。web

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

Run Script            用於執行AutoIt腳本。瀏覽器

SciTE Script Editor   用於編寫AutoIt腳本。app

 

<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<title>upload_file</title>
<link href="http://cdn.bootcss.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" />
</head>
<body>
  <div class="row-fluid">
    <div class="span6 well">
    <h3>upload_file</h3>
      <input type="file" name="file" />
    </div>
  </div>
</body>
<script src="http://cdn.bootcss.com/bootstrap/3.3.0/css/bootstrap.min.js"></script>
</html>

將上面的html代碼保存爲uplad.html文件,經過瀏覽器打開,效果以下:編輯器

 

下面以操做upload.html上傳彈出的窗口爲例講解AutoIt實現上傳過程。工具

 

一、首先打開AutoIt Windows Info 工具,鼠標點擊Finder Tool,鼠標將變成一個小風扇形狀的圖標,按住鼠標左鍵拖動到須要識別的控件上。post

 

                                                                 圖4.14  AutoIt Windows Info識別「文件名」輸入框控件

                                       圖4.15  AutoIt Windows Info識別「打開」按鈕控件

如圖4.1四、4.15,經過AutoIt Windows Info 得到如下信息。

窗口的title爲「選擇要加載的文件」,標題的Class爲「#32770」。

文件名輸入框的class 爲「Edit」,Instance爲「1」 ,因此ClassnameNN爲「Edit1」。

打開按鈕的class 爲「Button」,Instance爲「1」 ,因此ClassnameNN爲「Button1」。

 

二、根據AutoIt Windows Info 所識別到的控件信息打開SciTE Script Editor編輯器,編寫腳本。

;ControlFocus("title","text",controlID) Edit1=Edit instance 1
ControlFocus("選擇要加載的文件", "","Edit1")


; Wait 10 seconds for the Upload window to appear
  WinWait("[CLASS:#32770]","",10)


; Set the File name text on the Edit field

  ControlSetText("選擇要加載的文件", "", "Edit1", "D:\\upload_file.txt")

  Sleep(2000)

; Click on the Open button

  ControlClick("選擇要加載的文件", "","Button1");

   ControlFocus()方法用於識別Window窗口。WinWait()設置10秒鐘用於等待窗口的顯示,其用法與WebDriver 所提供的implicitly_wait()相似。ControlSetText()用於向「文件名」輸入框內輸入本地文件的路徑。這裏的Sleep()方法與Python中time模塊提供的Sleep()方法用法同樣,不過它是以毫秒爲單位,Sleep(2000)表示固定休眠2000毫秒。ControlClick()用於點擊上傳窗口中的「打開」按鈕。

  AutoIt的腳本已經寫好了,能夠經過菜單欄「Tools」-->「Go」 (或按鍵盤F5)來運行一個腳本吧!注意在運行時上傳窗口當前處於打開狀態。

 

  三、腳本運行正常,將其保存爲upfile.au3,這裏保存的腳本能夠經過Run Script 工具將其打開運行,但咱們的目的是但願這個腳本被Python程序調用,那麼就須要將其生成exe程序。打開Compile Script to.exe工具,將其生成爲exe可執行文件。如圖4.16,

                              圖4.16  Compile Script to.exe生成exe程序

點擊「Browse」選擇upfile.au3文件,點擊「Convert」按鈕將其生成爲upfile.exe程序。

 

四、下面就是經過自動化測試腳本調用upfile.exe程序實現上傳了。

#coding=utf-8
from selenium import webdriver
import os

driver = webdriver.Firefox()

#打開上傳功能頁面
file_path =  'file:///' + os.path.abspath('upfile.html')
driver.get(file_path)

#點擊打開上傳窗口
driver.find_element_by_name("file").click()
#調用upfile.exe上傳程序
os.system("D:\\upfile.exe")

driver.quit()

經過Python os模塊的system()方法能夠調用exe程序並執行。

瞭解了上傳的實現過程,那麼下載也是同樣的。

 

《selenium2 python 自動化測試實戰》 --new

相關文章
相關標籤/搜索