The following pages and posts are tagged with
Title | Type | Excerpt |
---|---|---|
Creating Test Project | Page | Option 1 - QAS Users If you are using QAS (QMetry Automation Studio) then create project using new project wizard. Option 2 - Eclipse Users Clone/Download this repository for sample project. You can directly import project in Eclipse. Following plugins are recommanded for eclipse users. <a... |
QMetry Automation Framework | Page | Overview Powerful Automation Platform for Test Authoring, Test Execution and Execution Analysis It provides a powerful and versatile platform to author Test Cases in Behavior Driven, Keyword Driven or Code Driven approach. It helps to significantly reduce costs involved in setting up Test Automation at any organization. It is... |
Make Tests Data driven | Page | QAF enhances TestNG data provider by providing intercepter and in built data providers that supports different external data sources. To make any test data driven you can use @QAFDataProvider or @Metadata annotation on java test method, where test get executed for each data set provided in... |
Make Tests Data driven | Page | To make any test data driven you can use QAFDataProvider annotation on test method, where test get executed for each data set provided in external data file. QAF supports following file formats to provide data for data driven tests. CSV MS-EXCEL JSON XML DATABASE TXT <div... |
Properties Configuration | Page | QAF has configuration manager that loads configuration provided using xml or properties file. It expects application.properties available under resources directory under project root. If application.properties not provided under default location, you can specify location using system property named application.properties.file. Refer list of... |
Java | Page | Required java 1.8 or later, you can obtain it from here. |
Property List | Page | Framework uses different properties those are defined in ApplicationProperties.java. Below are few useful and important properties. Refer different ways of providing properties to get details on how to set any property. Key Default Value Description env.baseurl Base URL of web... |
Understanding Directory Structure | Page | * **config** The config directory contains testng.xml file, and is a place holder for configuration files. * **lib** The lib directory contains required jar files, and is a place holder for other library jars/zips. * **resources** The resources directory contains all required resources including properties files and data files, and... |