I would like to know your comments on best practices developing web test automation framework
I basically read couple of blogs and finally got convinced with david burns approach listed in book - http://www.packtpub.com/toc/selenium-10-testing-tools-beginner%E2%80%99s-guide-table-contents#chapter_7
Keeping all methods, verifiers of a particular page in a seperate class file makes it refined, maintainable.
I would like to know advantages in designing automation framework using design patterns. I am not fully convinced which is best approach. Please add your suggestions. Might be each approach we can list down pros-cons of it
Would it be good if we store all the steps in a database table, fetch and execute the steps ? In this case if any of the test is failed, This would have been updated in the tables and we can selectively run only the failed tests.
Also, Reporting can be done by selectively querying the tables and data can be cleaned-up from those tables thru a job. Keeping results/parsing results from test output files is also fine.
If this question is already answered in related posts please post links. I checked few posts before posting this question.
In a website, User Interaction with the website is event driven, The way user can interact with the site can be multiple combinations A->B->C or A->C->B. Doing all possible combination provides maximum coverage. Model based Test Automation covering all possible states
Automation suite which simulates functional regression for all possible state would simulate all user scenarios
Please share your best practices/suggestions for above questions. For all above implementation Dataproviders, passing data in XML we can leverage with respect to test data management.
What design approach we need to consider for developing Model based test automation suite.
Has anyone tried using framework http://www.w3qa.eu/framework.html. Any comments/feedback on the same please provide
Thanks, Siva