Skip to content

Rathna-Prashanth/coffeebean

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

58 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Logo

CoffeeBean

Easy to use end to end testing solution for web application and websites with BDD approach

Usage

        CoffeeBeanOptions.deviceName = "Windows Browser";
        CoffeeBean.initialize()
                .createTestSuite("CoffeeBean Unit Test")
                .createFeature("initCallBack")
                .createScenario(WebBrowser.ChromeBrowser, "Check Callback")
                .createStep("Given:User open google")
                .createStep("And:User enter search text")
                .sendKeys("XPATH://input", "Rathna Prashanth SDET")
                .createStep("Given:User click search")
                .click("XPATH:(//input[@value='Google Search'])")
                .createStep("And:User click SDET")
                .click("XPATH://h3[contains(text(),'SDET')]")
                .end().endTestSuite();

License

Apache-2.0 License

Documentation

CofeeBean 0.0.4-alpha Java Documentation

CofeeBean Documentation

Author

@Rathna Prashanth