Selenium AndroidDriver使用(一) - andych008的專欄 - 博客頻道 - CSDN.NET
?
參考: http://code.google.com/p/selenium/wiki/AndroidDriver
?
在 http://code.google.com/p/selenium/downloads/list 或 http://seleniumhq.org/download/
下載 Selenium IDE //用于在FireFox上錄制Selenium腳本(html),并且可以將Selenium腳本(html)Export為JUnit 4 /WebDriver或其它語言的代碼。
下載 Test Suite Batch Converter //用于擴展 Selenium IDE 的Export功能。也是FireFox的plug
下載 selenium-server-standalone-2.25.0.jar //JUnit工程需要的libs。用于向WebDriver發送命令。
下載 android-server-2.21.0.apk //安裝在android手機上,用于接收、處理 selenium 客戶端傳來的各種命令。
?
打開FireFox,通過 Selenium IDE 錄制測試腳本,保存為DemoDroid.html,并運行一下。OK。
然后在 Selenium IDE ->File->Batch convert test cases->Java/?JUnit 4/ WebDriver,保存為DemoDroid.java。
大概是這樣的:
?
- package ?com.atest;??
- ??
- import ?java.util.regex.Pattern;??
- import ?java.util.concurrent.TimeUnit;??
- import ?org.junit.*;??
- import ? static ?org.junit.Assert.*;??
- import ? static ?org.hamcrest.CoreMatchers.*;??
- import ?org.openqa.selenium.*;??
- import ?org.openqa.selenium.firefox.FirefoxDriver;??
- import ?org.openqa.selenium.support.ui.Select;??
- ??
- public ? class ?BaiduKitty?{??
- ???? private ?WebDriver?driver;??
- ???? private ?String?baseUrl;??
- ???? private ?StringBuffer?verificationErrors?=? new ?StringBuffer();??
- ???? @Before ??
- ???? public ? void ?setUp()? throws ?Exception?{??
- ????????driver?=? new ?FirefoxDriver();??
- ????????baseUrl?=? "http://www.baidu.com/" ;??
- ????????driver.manage().timeouts().implicitlyWait( 30 ,?TimeUnit.SECONDS);??
- ????}??
- ??
- ???? @Test ??
- ???? public ? void ?testBaiduKitty()? throws ?Exception?{??
- ???????? //?open?|?/index.html?|? ??
- ????????driver.get(baseUrl?+? "/index.html" );??
- ???????? //?type?|?id=kw?|?Hello?kitty ??
- ????????driver.findElement(By.id( "kw" )).clear();??
- ????????driver.findElement(By.id( "kw" )).sendKeys( "Hello?kitty" );??
- ???????? //?click?|?id=su?|? ??
- ????????driver.findElement(By.id( "su" )).click();??
- ???????? //?assertText?|?css=a?>?em?|?hello?kitty ??
- ????????assertEquals( "hello?kitty" ,?driver.findElement(By.cssSelector( "a?>?em" )).getText());??
- ????}??
- ??
- ???? @After ??
- ???? public ? void ?tearDown()? throws ?Exception?{??
- ????????driver.quit();??
- ????????String?verificationErrorString?=?verificationErrors.toString();??
- ???????? if ?(! "" .equals(verificationErrorString))?{??
- ????????????fail(verificationErrorString);??
- ????????}??
- ????}??
- ??
- ???? private ? boolean ?isElementPresent(By?by)?{??
- ???????? try ?{??
- ????????????driver.findElement(by);??
- ???????????? return ? true ;??
- ????????}? catch ?(NoSuchElementException?e)?{??
- ???????????? return ? false ;??
- ????????}??
- ????}??
- }??
?
?
- ??
?
?
新建一個java工程SeleniumDemo。導入libs( selenium-server-standalone-2.25.0.jar )。將DemoDroid.java 拷進src里。
?
安裝 android-server-2.21.0.apk 到手機上(2.3.x以上)。 并運行 。
在電腦上cmd。
?
- >adb?devices??
- *?daemon?not?running.?starting?it?now?on?port?5037?*??
- *?daemon?started?successfully?*??
- List?of?devices?attached??
- 0163D4701901D01E????????device??
- ??
- >adb?-s?0163D4701901D01E?forward?tcp:8080?tcp:8080??
?
DemoDroid.java上Run as JUnit Test
? OK ?OK ?OK
?
ps:
如果是FireFox ?for Win,
?
- System.setProperty( "webdriver.firefox.bin" , "D:/Program?Files/Mozilla?Firefox/firefox.exe" );??
- driver?=? new ?FirefoxDriver();??
?
如果是Chrome for Win,
下載 ChromeDriver
?
- System.setProperty( "webdriver.chrome.driver" ,? "E:/write/auto_test/chromedriver.exe" );??
- driver?=? new ?ChromeDriver();??
?
?
s
?
?
s
更多文章、技術交流、商務合作、聯系博主
微信掃碼或搜索:z360901061

微信掃一掃加我為好友
QQ號聯系: 360901061
您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。
【本文對您有幫助就好】元
