18
Automatically test in WebEx11 Using Selenium

Automatically test in WebEx11

Embed Size (px)

Citation preview

Page 1: Automatically test in WebEx11

Automatically test in WebEx11Using Selenium

Page 2: Automatically test in WebEx11
Page 3: Automatically test in WebEx11
Page 4: Automatically test in WebEx11

Goals

• Collect tests that correspond with use cases• Run these tests automatically, repetitively• Regression testing• Compare results

Page 5: Automatically test in WebEx11

Selenium overview

• Local tests using IDE• Local tests using RC(Remote Control )• Local test using WebDriver

Page 6: Automatically test in WebEx11

Selenium IDE

Page 7: Automatically test in WebEx11

Selenium IDE

Page 8: Automatically test in WebEx11

Selenium IDE

Page 9: Automatically test in WebEx11

Selenium RC

Selenium RC comes in two parts. • A server which automatically launches and

kills browsers, and acts as a HTTP proxy for web requests from them.

• Client libraries for your favorite computer language.

Page 10: Automatically test in WebEx11

Selenium RC

Page 11: Automatically test in WebEx11

Selenium RC

Page 12: Automatically test in WebEx11

Selenium WebDriver

• Selenium WebDriver makes direct calls to the browser using each browser’s native support for automation. How these direct calls are made, and the features they support depends on the browser you are using.

Page 13: Automatically test in WebEx11

Selenium WebDriver

Page 14: Automatically test in WebEx11

Selenium WebDriver

• Tip 1: How to disable cookie of Firefox

Page 15: Automatically test in WebEx11

Selenium WebDriver

• Tip 2: How to disable javascript of Firefox

Page 16: Automatically test in WebEx11

Selenium WebDriver

• Tip 3: How to set up multiple WebDrivers

Page 17: Automatically test in WebEx11

Selenium WebDriver

Demo• 1. Sign in WebEx11• 2. Schedule a meeting• 3. Check this meeting existing in Feed• 4. Cancel the meeting• 4. Check the meeting not existing in FeedSelenium_WebEx11.wrf

Page 18: Automatically test in WebEx11

Thank you