3 articles in Acceptance Tests
Setting up a Selenium/Specflow Acceptance Test Project
October 20, 2018
I really appreciate the value in using Selenium and Specflow to write a suite of browser based tests to validate a software application. These tests unequivocally confirm that the acceptance criteria is met and the application functions as desired. I wrote a post about a nice way to think of these…
Using Selenium API to find HTML page components
March 13, 2015
Once you have setup your acceptance tests using the page object pattern as described in an earlier post , and you continue to write scenarios you will end up needing to use the Selenium API to find HTML components as part of the acceptance test scenarios. The Selenium By class provides several…
Writing Acceptance Tests using SpecFlow & Selenium
February 26, 2015
Selenium and SpecFlow are pretty straight forward to get to grips with individually, but on larger projects when the page object pattern is used things start to get a little more complicated. I find it useful to think about three layers when organizing the code that runs the tests... SpecFlow…