SlideShare a Scribd company logo
探討Web UI自動化測試工具 Jimmy
Agenda
Why UI Test
Selenium
Sikuli
Why UI Test
探討Web ui自動化測試工具
這麼多size 怎麼測
現實生活中的測試方式
探討Web ui自動化測試工具
程式寫越多
通常Bug 就更多
請善用工具,做適當的測試
後端工程師,可以寫unit test
身為前端工程師,也來了解一
下UI的測試可以怎麼測
Selenium
Selenium is
● Browser base Web Application
testing tool
● Open Source License
● Support Mobile Testing Android
/ IOS
● Write Test case using Language
of Java,C#,Python,Ruby..
探討Web ui自動化測試工具
Selenium
Selenium
● Selenium Core
● Selenium IDE
● Selenium RC(Remote Control)
● Selenium WebDrivers
● Selenium Grid
Selenium IDE
Selenium RC
Selenium
WebDrivers
Selenium Grid
Selenium IDE
● add-on for Mozilla Firefox
● record, edit, and debug tests
● recording the Script
Live Demo
Selenium WebDriver
• WebDriver is designed in a simpler and more concise programming
interface along with addressing some limitations in the Selenium-RC
API.
• WebDriver is a compact Object Oriented API when compared to
Selenium1.0
• It drives the browser much more effectively and over comes the
limitations of Selenium 1.x which affected our functional test
coverage, like the file upload or download, pop-ups and dialogs
barrier
• WebDriver overcomes the limitation of Selenium Rc's Single Host
origin policy
Web Driver
Selenium WebDriver
AndroidDriver
ChromeDriver
EventFiringWebDriver
FirefoxDriver
HtmlUnitDriver
InternetExplorerDriver
PhantomJSDriver
RemoteWebDriver
SafariDriver
Selenium WebDriver support
Java
C#
Python
Ruby
Perl
Javascript
Selenium WebDriver (以Java為例)
@Before
public void setUp() throws Exception {
driver = new FirefoxDriver();
baseUrl = "http://autotest.localhost.com/";
driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
}
@Test
public void testLogin() throws Exception {
driver.get(baseUrl + "/index.php");
driver.findElement(By.id("username")).clear();
driver.findElement(By.id("username")).sendKeys("jimmy");
driver.findElement(By.id("password")).clear();
….略.....
}
@After
public void tearDown() throws Exception {
driver.quit();
….略.....
}
}
Live Demo
Selenium RC Architecture
Selenium RC Architecture
Selenium Client Driver
Selenium RC Setup
http://seleniumhq.org/download
Extract the ZIP file.
Start a Command Prompt or a console window and navigate to where
the ZIP file was extracted.
Run the command
java –jar selenium-server-standalone.jar
sikuli
Why is sikuli?
• GUI test
• Automate use Script(Python)
• can be used to automate Flash Objects/ Flash Websites
• Using Sikuli we can automate desktop application
Sikuli IDE
Live Demo
Sikuli API
• GUI test
• Automate use Script(Python)
• can be used to automate Flash Objects/ Flash Websites
• Using Sikuli we can automate desktop application
How sikuli work?
最新版本Bug 注意
Mac 10.10 有 bug
https://bugs.launchpad.net/sikuli/+bug/1362011
修正
http://www.sikulix.com/
Other
其它幾個UI Test
• iMacro 與 sikuli 類以,都是在 firefox 上錄製,再進行測試
• Watir (web application test in ruby)
• 使用ruby
• Robot Framework
• python base
• 可以參考 http://www.tonylin.idv.tw/dokuwiki/doku.php/rf:rf
•
心得
• 好的自動測試可以降低bug的產生,提高程式的品質
• 更熟悉流程的正確性
• 利用夜間排程,進行自動測試
參考資料來源
1. http://www.tonylin.idv.tw/dokuwiki/doku.php/rf:rf
2. http://blog.mykhailo.com/

More Related Content

PDF
淺談 Geb 網站自動化測試(JCConf 2014)
PPTX
前端網頁自動測試
PDF
淺談 Groovy 與 AWS 雲端應用開發整合
PDF
JavaScript + Jenkins = Winning!
PDF
Writing a Jenkins / Hudson plugin
PPTX
Jenkins Plugin Development With Gradle And Groovy
PDF
Webdriver.io
PDF
Night Watch with QA
淺談 Geb 網站自動化測試(JCConf 2014)
前端網頁自動測試
淺談 Groovy 與 AWS 雲端應用開發整合
JavaScript + Jenkins = Winning!
Writing a Jenkins / Hudson plugin
Jenkins Plugin Development With Gradle And Groovy
Webdriver.io
Night Watch with QA

What's hot (20)

PDF
Scraping recalcitrant web sites with Python & Selenium
PDF
Testing Web Applications
PDF
Testing with Codeception (Webelement #30)
PPTX
Geb with spock
PPTX
Test-Driven JavaScript Development (JavaZone 2010)
PDF
20160905 - BrisJS - nightwatch testing
PDF
High Performance JavaScript 2011
PPTX
Session on Selenium 4 : What’s coming our way? by Hitesh Prajapati
PDF
Efficient JavaScript Unit Testing, May 2012
PDF
Node.js meets jenkins
PPTX
Intro to Angular.js & Zend2 for Front-End Web Applications
PPTX
Session on Launching Selenium Grid and Running tests using docker compose and...
PDF
Hitchhiker's guide to the front end development
PPTX
Automated Smoke Tests with Protractor
PDF
Integrační testy - Selenium
PDF
[CLIW] Web testing
PDF
Test-driven Development with Drupal and Codeception (DrupalCamp Brighton)
PDF
Red Hat and Oracle: Delivering on the Promise of Interoperability in Java EE 7
PDF
Front-End Testing: Demystified
PPTX
Jasmine with JS-Test-Driver
Scraping recalcitrant web sites with Python & Selenium
Testing Web Applications
Testing with Codeception (Webelement #30)
Geb with spock
Test-Driven JavaScript Development (JavaZone 2010)
20160905 - BrisJS - nightwatch testing
High Performance JavaScript 2011
Session on Selenium 4 : What’s coming our way? by Hitesh Prajapati
Efficient JavaScript Unit Testing, May 2012
Node.js meets jenkins
Intro to Angular.js & Zend2 for Front-End Web Applications
Session on Launching Selenium Grid and Running tests using docker compose and...
Hitchhiker's guide to the front end development
Automated Smoke Tests with Protractor
Integrační testy - Selenium
[CLIW] Web testing
Test-driven Development with Drupal and Codeception (DrupalCamp Brighton)
Red Hat and Oracle: Delivering on the Promise of Interoperability in Java EE 7
Front-End Testing: Demystified
Jasmine with JS-Test-Driver
Ad

Similar to 探討Web ui自動化測試工具 (20)

PDF
Web UI test automation instruments
PPTX
Open Source Automation Tools That Really Work V2
PDF
Reasons behind selenium automation testing popularity
PPTX
Automated ui-testing
PDF
Uploading files using selenium web driver
PPTX
Test Automation and Selenium
PPTX
test-automation-selenium-160216124839.pptx
PPTX
Test Automation Using Selenium
PDF
Automation testing using Sikuli
PPTX
Step by step instructions to execute selenium automation testing
PPTX
Selenium presentation
PDF
Introduction to Selenium Webdriver - SpringPeople
PPTX
تست وب اپ ها با سلنیوم - علیرضا عظیم زاده میلانی
PPTX
Python selenium
PPT
Selenium
PDF
2013 10-10 selenium presentation to ocjug
PPTX
Selenium
PDF
Selenium ui testing framework
PDF
Selenide
PPTX
Selenium
Web UI test automation instruments
Open Source Automation Tools That Really Work V2
Reasons behind selenium automation testing popularity
Automated ui-testing
Uploading files using selenium web driver
Test Automation and Selenium
test-automation-selenium-160216124839.pptx
Test Automation Using Selenium
Automation testing using Sikuli
Step by step instructions to execute selenium automation testing
Selenium presentation
Introduction to Selenium Webdriver - SpringPeople
تست وب اپ ها با سلنیوم - علیرضا عظیم زاده میلانی
Python selenium
Selenium
2013 10-10 selenium presentation to ocjug
Selenium
Selenium ui testing framework
Selenide
Selenium
Ad

Recently uploaded (20)

PPTX
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
PDF
Mohammad Mahdi Farshadian CV - Prospective PhD Student 2026
PPTX
UNIT-1 - COAL BASED THERMAL POWER PLANTS
PDF
SM_6th-Sem__Cse_Internet-of-Things.pdf IOT
PPTX
FINAL REVIEW FOR COPD DIANOSIS FOR PULMONARY DISEASE.pptx
PDF
The CXO Playbook 2025 – Future-Ready Strategies for C-Suite Leaders Cerebrai...
PPTX
Foundation to blockchain - A guide to Blockchain Tech
PDF
composite construction of structures.pdf
PPTX
OOP with Java - Java Introduction (Basics)
DOCX
573137875-Attendance-Management-System-original
PPT
CRASH COURSE IN ALTERNATIVE PLUMBING CLASS
PDF
PRIZ Academy - 9 Windows Thinking Where to Invest Today to Win Tomorrow.pdf
PPTX
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
PDF
Embodied AI: Ushering in the Next Era of Intelligent Systems
PPTX
Welding lecture in detail for understanding
PDF
Digital Logic Computer Design lecture notes
PPTX
Lecture Notes Electrical Wiring System Components
PDF
R24 SURVEYING LAB MANUAL for civil enggi
PDF
Enhancing Cyber Defense Against Zero-Day Attacks using Ensemble Neural Networks
PDF
Automation-in-Manufacturing-Chapter-Introduction.pdf
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
Mohammad Mahdi Farshadian CV - Prospective PhD Student 2026
UNIT-1 - COAL BASED THERMAL POWER PLANTS
SM_6th-Sem__Cse_Internet-of-Things.pdf IOT
FINAL REVIEW FOR COPD DIANOSIS FOR PULMONARY DISEASE.pptx
The CXO Playbook 2025 – Future-Ready Strategies for C-Suite Leaders Cerebrai...
Foundation to blockchain - A guide to Blockchain Tech
composite construction of structures.pdf
OOP with Java - Java Introduction (Basics)
573137875-Attendance-Management-System-original
CRASH COURSE IN ALTERNATIVE PLUMBING CLASS
PRIZ Academy - 9 Windows Thinking Where to Invest Today to Win Tomorrow.pdf
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
Embodied AI: Ushering in the Next Era of Intelligent Systems
Welding lecture in detail for understanding
Digital Logic Computer Design lecture notes
Lecture Notes Electrical Wiring System Components
R24 SURVEYING LAB MANUAL for civil enggi
Enhancing Cyber Defense Against Zero-Day Attacks using Ensemble Neural Networks
Automation-in-Manufacturing-Chapter-Introduction.pdf

探討Web ui自動化測試工具