Skip to main content

Posts

Showing posts with the label howto

Test automation tutorial with Selenium WebDriver part 1: introduction

  Introduction This tutorial will be about test automation with Selenium WebDriver. What you could learn: How does test automation work? Learn about Python, Python Selenium Bindings, easyselenium, nose and Jenkins Write simple test cases Learn basic git commands Learn about Jenkins Prerequisites: Interest in test automation Small understanding about testing Programming knowledge could be useful NOTE : Abbreviations can be found http://astqb.org/glossary/ How does test automation work? The flow for Test Automation Engineers: Define test case(usually taken from manual predefined test cases) Commit and push to testing repository Jenkins job executes all test cases including new one Report is generated and sent The flow for new releases of SUT: New version of SUT is deployed Jenkins job executes all test cases including new one Report is generated and sent Next: Setup