Web測試:Selenium使用
2008-12-23 10:49 敏捷的水 閱讀(37657) 評論(16) 收藏 舉報本文包含的主要內(nèi)容:
- Selenium簡介
- 我應(yīng)該使用哪一個Selenium工具
- .Net人員如何編寫自動測試
- Selenium如何與每日集成工具集成
- Selenium 中文手冊
一. Selenium簡介
Selenium 是 thoughtworks公司的一個集成測試的強大工具 http://seleniumhq.org/,他又幾個部分,Selenium IDE是一個錄制工具,他可以錄制操作,并且可以自動產(chǎn)生各種語言的代碼,Selenium IDE是一個FireFox插件,目前只能運行在FireFox瀏覽器。請看如下截圖
二、我應(yīng)該使用哪一個Selenium工具
下面列出了,不同的工具使用的場景
三、.Net人員如何編寫自動測試
1. 下載Selenium RC
2. 安裝JRE(如果已安裝,則可略過此步)
3. 解壓后啟動遠程測試服務(wù)器,這個是必須的 java -jar selenium-server.jar
4. 編寫程序,運行測試
下面我用VS自帶的測試來演示一下,其它的也差不多
a. 建立一個測試工程,并引入如下的DLL
b. 編寫如下代碼
using System;
using System.Text;
using System.Collections.Generic;
using System.Linq;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Selenium;
using ThoughtWorks.Selenium;
namespace SeleniumDemo
{
/// <summary>
/// Summary description for UnitTest1
/// </summary>
[TestClass]
public class TestGoogle
{
public TestGoogle()
{
}
[TestMethod]
public void Test_Googel_Search_Jack_Wang()
{
DefaultSelenium sel = new DefaultSelenium("10.10.50.50", 4444, "*iexplore", @"http://www.google.cn");
sel.Start();
sel.Open(@"http://www.google.cn/");
sel.Type("q", "jack wang");
sel.Click("btnG");
sel.WaitForPageToLoad("3000");
Assert.IsTrue(sel.GetTitle().Contains("Google"));
sel.Stop();
}
}
}
c. 運行測試,這里是自動操作的界面
四、Selenium如何與每日集成工具集成
這里我只演示與CruiseControl.Net的集成,只要我們添加一個任務(wù)就可以,測試的結(jié)果會自動放到DashBoard的報告里
五、Selenium 中文手冊
Commands (命令)
- Action
對當(dāng)前狀態(tài)進行操作
失敗時,停止測試 - Assertion
校驗是否有產(chǎn)生正確的值 - Element Locators
指定HTML中的某元素 - Patterns
用于模式匹配
1. Element Locators (元素定位器)
- id=id
id locator 指定HTML中的唯一id的元素 - name=name
name locator指定 HTML中相同name的元素中的第一個元素 - identifier=id
identifier locator 首先查找HTML是否存在該id的元素, 若不存在,查找第一個該name的元素 - dom=javascriptExpression
dom locator用JavaScript表達式來定位HTML中的元素,注意必須要以"document"開頭
例如:
dom=document.forms['myForm'].myDropdown
dom=document.images[56] - xpath=xpathExpression
xpath locator用 XPath 表達式來定位HTML中的元素,必須注意要以"http://"開頭
例如:
xpath=//img[@alt='The image alt text']
xpath=//table[@id='table1']//tr[4]/td[2] - link=textPattern
link locator 用link來選擇HTML中的連接或錨元素
例如:
link=The link text - 在沒有l(wèi)ocator前序的情況下 Without a locator prefix, Selenium uses:
如果以"document."開頭,則默認是使用 dom locator,如果是以"http://"開頭,則默認使用xpath locator,其余情況均認作identifier locator
2. String Matching Patterns (字符串匹配模式)
- glob:patthern
glob模式,用通配符"*"代表任意長度字符,"?"代表一個字符 - regexp:regexp
正則表達式模式,用JavaScript正則表達式的形式匹配字符串 - exact:string
精確匹配模式,精確匹配整個字符串,不能用通配符 - 在沒有指定字符串匹配前序的時候,selenium 默認使用golb 匹配模式
3. Select Option Specifiers (Select選項指定器)
- label=labelPattern
通過匹配選項中的文本指定選項
例如:label=regexp:^[Oo]ther - value=valuePattern
通過匹配選項中的值指定選項
例如:value=other - id=id
通過匹配選項的id指定選項
例如: id=option1 - index=index
通過匹配選項的序號指定選項,序號從0開始
例如:index=2 - 在沒有選項選擇前序的情況下,默認是匹配選項的文本
Actions
描述了用戶所會作出的操作。
Action 有兩種形式: action和actionAndWait, action會立即執(zhí)行,而actionAndWait會假設(shè)需要較長時間才能得到該action的相響,而作出等待,open則是會自動處理等待時間。
- click
click(elementLocator)
- 點擊連接,按鈕,復(fù)選和單選框
- 如果點擊后需要等待響應(yīng),則用"clickAndWait"
- 如果是需要經(jīng)過JavaScript的alert或confirm對話框后才能繼續(xù)操作,則需要調(diào)用verify或assert來告訴Selenium你期望對對話框進行什么操作。click aCheckbox clickAndWait submitButton clickAndWait anyLink - open
open(url)
- 在瀏覽器中打開URL,可以接受相對和絕對路徑兩種形式
- 注意:該URL必須在與瀏覽器相同的安全限定范圍之內(nèi)open /mypage open http://localhost/
- type
type(inputLocator, value)
- 模擬人手的輸入過程,往指定的input中輸入值
- 也適合給復(fù)選和單選框賦值
- 在這個例子中,則只是給鉤選了的復(fù)選框賦值,注意,而不是改寫其文本type nameField John Smith typeAndWait textBoxThatSubmitsOnChange newValue - select
select(dropDownLocator, optionSpecifier)
- 根據(jù)optionSpecifier選項選擇器來選擇一個下拉菜單選項
- 如果有多于一個選擇器的時候,如在用通配符模式,如"f*b*",或者超過一個選項有相同的文本或值,則會選擇第一個匹配到的值select dropDown Australian Dollars select dropDown index=0 selectAndWait currencySelector value=AUD selectAndWait currencySelector label=Auslian D*rs - goBack,close
goBack()
模擬點擊瀏覽器的后退按鈕
close()
模擬點擊瀏覽器關(guān)閉按鈕 - selectWindow
select(windowId)
- 選擇一個彈出窗口
- 當(dāng)選中那個窗口的時候,所有的命令將會轉(zhuǎn)移到那窗口中執(zhí)行selectWindow myPopupWindow selectWindow null - pause
pause(millisenconds)
- 根據(jù)指定時間暫停Selenium腳本執(zhí)行
- 常用在調(diào)試腳本或等待服務(wù)器段響應(yīng)時pause 5000 pause 2000 - fireEvent
fireEvent(elementLocatore,evenName)
模擬頁面元素事件被激活的處理動作fireEvent textField focus fireEvent dropDown blur - waitForCondition
waitForCondition(JavaScriptSnippet,time)
- 在限定時間內(nèi),等待一段JavaScript代碼返回true值,超時則停止等待waitForCondition var value=selenium.getText("foo"); value.match(/bar/); 3000 - waitForValue
waitForValue(inputLocator, value)
- 等待某input(如hidden input)被賦予某值,
- 會輪流檢測該值,所以要注意如果該值長時間一直不賦予該input該值的話,可能會導(dǎo)致阻塞waitForValue finishIndication isfinished - store,stroreValue
store(valueToStore, variablename)
保存一個值到變量里。
該值可以由自其他變量組合而成或通過JavaScript表達式賦值給變量store Mr John Smith fullname store $.{title} $.{firstname} $.{suname} fullname store javascript.{Math.round(Math.PI*100)/100} PI storeValue inputLocator variableName 把指定的input中的值保存到變量中
storeValue userName userID type userName $.{userID} - storeText, storeAttribute
storeText(elementLocator, variablename)
把指定元素的文本值賦予給變量storeText currentDate expectedStartDate verifyValue startDate $.{expectedStartDate} storeAttribute(.{}elementLocator@attributeName,variableName.{})
把指定元素的屬性的值賦予給變量storeAttribute input1@class classOfInput1 verifyAttribute input2@class $.{classOfInput1} - chooseCancel.., answer..
chooseCancelOnNextConfirmation()
- 當(dāng)下次JavaScript彈出confirm對話框的時候,讓selenium選擇Cancel
- 如果沒有該命令時,遇到confirm對話框Selenium默認返回true,如手動選擇OK按鈕一樣chooseCancelOnNextConfirmation - 如果已經(jīng)運行過該命令,當(dāng)下一次又有confirm對話框出現(xiàn)時,也會同樣地再次選擇Cancel
answerOnNextPrompt(answerString)
- 在下次JavaScript彈出prompt提示框時,賦予其anweerString的值,并選擇確定answerOnNextPrompt Kangaroo
Assertions
允許用戶去檢查當(dāng)前狀態(tài)。兩種模式: Assert 和 Verify, 當(dāng)Assert失敗,則退出測試;當(dāng)Verify失敗,測試會繼續(xù)運行。
- assertLocation, assertTitle
assertLocation(relativeLocation)
判斷當(dāng)前是在正確的頁面verifyLocation /mypage assertLocation /mypage - assertTitle(titlePattern)
檢查當(dāng)前頁面的title是否正確verifyTitle My Page assertTitle My Page - assertValue
assertValue(inputLocator, valuePattern)
- 檢查input的值
- 對于 checkbox或radio,如果已選擇,則值為"on",反之為"off"verifyValue nameField John Smith assertValue document.forms[2].nameField John Smith - assertSelected, assertSelectedOptions
assertSelected(selectLocator, optionSpecifier)
檢查select的下拉菜單中選中的選型是否和optionSpecifer(Select選擇選項器)的選項相同verifySelected dropdown2 John Smith verifySelected dorpdown2 value=js*123 assertSelected document.forms[2].dropDown label=J*Smith assertSelected document.forms[2].dropDown index=0 - assertSelectOptions(selectLocator, optionLabelList)
- 檢查下拉菜單中的選項的文本是否和optionLabelList相同
- optionLabelList是以逗號分割的一個字符串verifySelectOptions dropdown2 John Smith,Dave Bird assertSelectOptions document.forms[2].dropdown Smith,J,Bird,D - assertText
assertText(elementLocator,textPattern)
- 檢查指定元素的文本
- 只對有包含文本的元素生效
- 對于Mozilla類型的瀏覽器,用textContent取元素的文本,對于IE類型的瀏覽器,用innerText取元素文本verifyText statusMessage Successful assertText //div[@id='foo']//h1 Successful - assertTextPresent, assertAttribute
assertTextPresent(text)
檢查在當(dāng)前給用戶顯示的頁面上是否有出現(xiàn)指定的文本verifyTextPresent You are now logged in assertTextPresent You are now logged in - assertAttribute(.{}elementLocator@attributeName.{}, ValuePattern)
檢查當(dāng)前指定元素的屬性的值verifyAttribute txt1@class bigAndBlod assertAttribute document.images[0]@alt alt-text verifyAttribute //img[@id='foo']/alt alt-text - assertTextPresent, etc.
assertTextPresent(text)
assertTextNotPresent(text)
assertElementPresent(elementLocator)verifyElementPresent submitButton assertElementPresent //img[@alt='foo'] assertElementNotPresent(elementLocator) - assertTable
assertTable(cellAddress, valuePattern)
- 檢查table里的某個cell中的值
- cellAddress的語法是tableName.row.column, 注意行列序號都是從0開始verifyTable myTable.1.6 Submitted assertTable results0.2 13 - assertVisible, nonVisible
assertVisible(elementLocator)
- 檢查指定的元素是否可視的
- 隱藏一個元素可以用設(shè)置css的'visibility'屬性為'hidden',也可以設(shè)置'display'屬性為'none'verfyVisible postcode assertVisible postcode - assertNotVisible(elementLocator)
verfyNotVisible postcode assertNotVisible postcode - Editable, non-editable
assertEditable(inputLocator)
檢查指定的input是否可以編輯verifyEditable shape assertEditable colour - assertNotEditable(inputLocator)
檢查指定的input是否不可以編輯 - assertAlert
assertAlert(messagePattern)
- 檢查JavaScript是否有產(chǎn)生帶指定message的alert對話框
- alert產(chǎn)生的順序必須與檢查的順序一致
- 檢查alert時會產(chǎn)生與手動點擊'OK'按鈕一樣的效果。如果一個alert產(chǎn)生了,而你卻沒有去檢查它,selenium會在下個action中報錯。
- 注意:Selenium 不支持 JavaScript 在onload()事件時 調(diào)用alert();在這種情況下,Selenium需要你自己手動來點擊OK. - assertConfirmation
assertConfirmation(messagePattern)
- 檢查JavaScript是否有產(chǎn)生帶指定message的confirmation對話框和alert情況一樣,confirmation對話框也必須在它們產(chǎn)生的時候進行檢查
- 默認情況下,Selenium會讓confirm() 返回true, 相當(dāng)于手動點擊Ok按鈕的效果。你能夠通過chooseCancelOnNextConfirmation命令讓confirm()返回false.同樣地,如果一個cofirmation對話框出現(xiàn)了,但你卻沒有檢查的話,Selenium將會在下個action中報錯
- 注意:在Selenium的環(huán)境下,confirmation對話框框?qū)⒉粫俪霈F(xiàn)彈出顯式對話框
- 注意:Selenium不支持在onload()事件時調(diào)用confirmation對話框,在這種情況下,會出現(xiàn)顯示confirmatioin對話框,并需要你自己手動點擊。 - assertPrompt
assertPrompt(messagePattern)
- 檢查JavaScript是否有產(chǎn)生帶指定message的Prompt對話框
- 你檢查的prompt的順序Prompt對話框產(chǎn)生的順序必須相同
- 必須在verifyPrompt之前調(diào)用answerOnNextPrompt命令
- 如果prompt對話框出現(xiàn)了但你卻沒有檢查,則Selenium會在下個action中報錯answerOnNextPrompt Joe click id=delegate verifyPrompt Delegate to who?
Parameters and Variables
參數(shù)和變量的聲明范圍由簡單的賦值到JavaScript表達式賦值。
Store,storeValue 和storeText 為下次訪問保存值。
在Selenium內(nèi)部是用一個叫storeVars的map來保存變量名。
- Variable Substitution 變量替換
提供了一個簡單的方法去訪問變量,語法 $.{xxx}store Mr title storeValue nameField surname store $.{title} $.{suname} fullname type textElement Full name is: $.{fullname} - JavaScript Evaluation JavaScript賦值
你能用JavaScript來構(gòu)建任何你所需要的值。
這個參數(shù)是以javascript開頭,語法是 javascript.{'with a trailing'}。
可以通過JavaScript表達式給某元素賦值。store javascript.{'merchant'+(new Date()).getTime()} merchantId type textElement javascript.{storedVars['merchantId'].toUpperCase()}
掃碼關(guān)注公眾號,了解更多管理,見識,育兒等內(nèi)容
出處:http://www.rzrgm.cn/cnblogsfans
版權(quán):本文版權(quán)歸作者所有,轉(zhuǎn)載需經(jīng)作者同意。
Selenium 是 thoughtworks公司的一個集成測試的強大工具 http://seleniumhq.org/,他又幾個部分,Selenium IDE是一個錄制工具,他可以錄制操作,并且可以自動產(chǎn)生各種語言的代碼,Selenium IDE是一個FireFox插件,目前只能運行在FireFox瀏覽器。請看如下截圖
浙公網(wǎng)安備 33010602011771號