baangt - Basic And Advanced Next Generation Testing http://baangt.org

bernhardbuhl a4d84ec8ab ExportResults fixed to accept custom path 4 years ago
baangt a4d84ec8ab ExportResults fixed to accept custom path 4 years ago
browserDrivers ed187d90ad Complete Refactoring structures 4 years ago
.gitignore 245ac528a5 Package for PyPi, Split between VIG and Standard-Package 4 years ago
DropsTestRunDefinition.xlsx a4d84ec8ab ExportResults fixed to accept custom path 4 years ago
LICENSE 245ac528a5 Package for PyPi, Split between VIG and Standard-Package 4 years ago
MakePackage.sh 27175b4db7 Lots of Package-Imports corrected 4 years ago
README.md 0972b51a84 baangt.py as Main program, removed TestRunFromExcel.py and replaced by simpler TestRunExcelImporter.py. Moved all memory to TestRunUtils.py 4 years ago
baangt.py a4d84ec8ab ExportResults fixed to accept custom path 4 years ago
dropsApiTest.xlsx a4d84ec8ab ExportResults fixed to accept custom path 4 years ago
globals.json a4d84ec8ab ExportResults fixed to accept custom path 4 years ago
setup.py 0972b51a84 baangt.py as Main program, removed TestRunFromExcel.py and replaced by simpler TestRunExcelImporter.py. Moved all memory to TestRunUtils.py 4 years ago

README.md

Welcome

This is the current release of baangt - the tool for "Basic And Advanced Next Generation Testing".

Installation in a virtual environment:

pip install baangt

Installation from GIT-Repository:

GIT CLONE https://gogs.earthsquad.global/baangt

#Usage: ##Run the provided Testcase Python baangt.py will run the Testcase specified in file default.json

##Create your own TestStep: :

from baangt.TestStep import TestStepMaster

class myTestStep(TestStepMaster):
    def execute():
        self.driver.goToURL("http://www.google.com")
        self.driver.findByAndSetText(xpath='//input[@type='text']', value='baangt')
        self.driver.findByAndClick(xpath='(//input[contains(@type,'submit')])[3]')

That's it. All the rest is taken care of by baangt. You'll also receive a nice export file showing timing information for your TestCase.

#Further reading: Please see latest news on http://baangt.org for community edition and http://baangt.com for corporate environments