├── AllureTestNG ├── Doc │ └── jenkins job ├── .gitignore └── src │ ├── test │ ├── resources │ │ ├── allure.properties │ │ ├── suites │ │ │ ├── AllTestsTogather.xml │ │ │ └── AllTestsTogatherWithRetryListener.xml │ │ ├── testng.xml │ │ └── log4j.properties │ └── java │ │ └── org │ │ └── automation │ │ └── unitTests │ │ ├── TestWithDescription.java │ │ └── TestWithFeatures.java │ └── main │ └── java │ └── org │ └── automation │ └── testng │ ├── annotation │ └── AppId.java │ ├── listeners │ └── RetryListener.java │ └── ReTry.java ├── SoapUi ├── testcases │ └── app.properties ├── src │ ├── main │ │ └── resources │ │ │ └── soapui.properties │ └── test │ │ └── java │ │ └── org │ │ └── automation │ │ └── TestRequest.java ├── .gitignore ├── README.md └── pom.xml ├── Serenity-Junit ├── Doc │ ├── page_object.txt │ ├── project structure │ └── step_defination.txt ├── .gitignore └── src │ ├── test │ ├── resources │ │ ├── zip_serenity.conf.zip │ │ └── features │ │ │ ├── search │ │ │ └── narrative.txt │ │ │ └── display_product │ │ │ └── narrative.txt │ └── java │ │ └── org │ │ └── automation │ │ ├── examples │ │ └── ManagedPages_Examples.java │ │ ├── suits │ │ └── TestRegressionSuit.java │ │ └── tests │ │ └── TestOpenCart.java │ └── main │ └── java │ └── org │ └── automation │ ├── model │ ├── SessionVariables.java │ ├── Pet.java │ └── OrderCostSummary.java │ ├── steps │ └── serenity │ │ └── SearchSteps.java │ └── pages │ └── opencart │ ├── HomePage.java │ ├── SearchResultPage.java │ └── SearchPanel.java ├── ChromeHeadless-Selenium ├── Logs │ └── chrome.log ├── Screenshots │ └── readme.md ├── src │ └── test │ │ └── java │ │ └── automation │ │ └── TestExamples.java ├── .gitignore └── README.md ├── pylenium └── readme.md ├── WiniumJunit ├── src │ └── main │ │ ├── resources │ │ ├── test.properties │ │ ├── app.properties │ │ └── winium.properties │ │ └── java │ │ └── org │ │ └── automation │ │ └── win │ │ └── app │ │ └── config │ │ └── WiniumOptionsForNotePad.java ├── run_driver.cmd ├── vmConfig.jpg ├── VMsavingFIle.jpg ├── server_running.JPG ├── project_structure.JPG └── .gitignore ├── pytest-allure └── readme.md ├── sikulix-junit ├── src │ ├── test │ │ ├── resources │ │ │ └── test.properties │ │ └── java │ │ │ └── org │ │ │ └── automation │ │ │ └── putty │ │ │ ├── tests │ │ │ └── Login.java │ │ │ └── core │ │ │ ├── PuttyTestBase.java │ │ │ └── TestTimeOutPuttyTest.java │ └── main │ │ ├── resources │ │ └── sikuli.properties │ │ └── java │ │ └── org │ │ └── automation │ │ ├── app │ │ ├── CLI.java │ │ └── putty │ │ │ └── ui │ │ │ ├── forms │ │ │ ├── About.java │ │ │ ├── Session.java │ │ │ └── Terminal.java │ │ │ ├── common │ │ │ ├── TopBar.java │ │ │ ├── LeftPanel.java │ │ │ └── BottomItems.java │ │ │ ├── Components │ │ │ ├── Radio.java │ │ │ ├── Buttons.java │ │ │ ├── Scroll.java │ │ │ └── TextBox.java │ │ │ └── UiBase.java │ │ ├── actions │ │ └── StartPutty.java │ │ ├── Application.java │ │ ├── utils │ │ ├── AppProperties.java │ │ └── ImageUtil.java │ │ └── putty │ │ └── core │ │ └── ScreenFactory.java ├── .gitignore └── Doc │ └── readme.md ├── junit-fitnesse ├── src │ ├── test │ │ ├── resources │ │ │ └── plugins.properties │ │ └── java │ │ │ └── org │ │ │ └── automation │ │ │ └── CalculatorTest.java │ └── main │ │ └── java │ │ └── org │ │ └── automation │ │ └── Calculator.java ├── .gitignore └── README.md ├── JfrUnit-example ├── .gitignore ├── readme.md └── src │ ├── test │ └── java │ │ └── org │ │ └── example │ │ └── jftunit │ │ ├── suites │ │ ├── SlaTests.java │ │ └── RegressionTests.java │ │ └── JftUnitTestBase.java │ └── main │ └── java │ └── org │ └── example │ └── jftunit │ └── Main.java ├── pytest-allure-behave └── readme.md ├── junit5-executable ├── test-classes.ini ├── .gitignore ├── package.properties ├── runner.properties └── src │ └── main │ ├── java │ └── org │ │ └── automation │ │ └── junit5 │ │ ├── reporting │ │ ├── TestStatus.java │ │ ├── CalculatorReporter.java │ │ └── TestLoggerProcessor.java │ │ ├── app │ │ └── Calculator.java │ │ ├── tests │ │ ├── AdhocTests.java │ │ ├── ExceptionTests.java │ │ └── CalculatorJunit5TestBase.java │ │ ├── config │ │ └── PackageConfigLoader.java │ │ └── runner │ │ └── Junit5Runner.java │ └── resources │ └── log4j.properties ├── testng-executable ├── suite.ini ├── .gitignore ├── doc │ ├── results.PNG │ ├── outputFolder.PNG │ ├── test_folder.png │ └── RunningFromJar.png ├── test.properties ├── src │ └── main │ │ ├── java │ │ └── org │ │ │ └── automation │ │ │ └── example │ │ │ ├── app │ │ │ └── Calculator.java │ │ │ ├── tests │ │ │ ├── AdhocTests.java │ │ │ ├── ExceptionTests.java │ │ │ └── CalculatorBaseTest.java │ │ │ ├── TestingApplication.java │ │ │ └── runner │ │ │ └── TestNgRunner.java │ │ └── resources │ │ └── log4j.properties ├── suites │ ├── ExceptionTests.xml │ └── AdhocTests.xml └── readme.md ├── Allure2-Junit5 ├── data │ └── addition.csv ├── allure-example.bat ├── allure-example.sh ├── build-show-report.bat ├── build-show-report.sh ├── src │ └── test │ │ ├── resources │ │ ├── META-INF │ │ │ └── services │ │ │ │ └── io.qameta.allure.listener.StepLifecycleListener │ │ ├── allure.properties │ │ └── log4j.properties │ │ └── java │ │ └── org │ │ └── automation │ │ └── junit5 │ │ ├── tests │ │ ├── dynamic │ │ │ └── TestFactoryExample.java │ │ ├── extentions │ │ │ ├── TestRegisterExtensionExample.java │ │ │ └── TestExtendWithExample.java │ │ ├── template │ │ │ └── TestTemplateExample.java │ │ ├── TestTempDirExample.java │ │ ├── TestDisplayNameGenerationExample.java │ │ ├── TestRepeatExample.java │ │ └── parameterized │ │ │ ├── TestValueSourceExample.java │ │ │ └── TestMethodSource.java │ │ ├── core │ │ ├── CalTest.java │ │ ├── StringUtil.java │ │ ├── LogProcessor.java │ │ ├── NameGenerator.java │ │ └── CalculatorTest.java │ │ ├── support │ │ ├── StringParameters.java │ │ ├── MyIntDataValueSource.java │ │ ├── MyCharDataValueSource.java │ │ ├── MyLongDataValueSource.java │ │ ├── MyShortDataValueSource.java │ │ ├── MyBooleanDataValueSource.java │ │ ├── MyDoubleDataValueSource.java │ │ ├── MyFloatDataValueSource.java │ │ ├── MyStringArraySource.java │ │ ├── data │ │ │ ├── ClassA.java │ │ │ └── ClassB.java │ │ ├── MyClassAsValueSource.java │ │ ├── VariableStream.java │ │ ├── ErrorStringProvider.java │ │ └── UserAggregator.java │ │ └── suites │ │ ├── AllureExamples.java │ │ ├── releases │ │ ├── ReleaseBSuite.java │ │ └── ReleaseASuite.java │ │ ├── SlowTests.java │ │ ├── QuickAndParallelTests.java │ │ └── FunctionalTestSuite.java ├── images │ └── mave-build-congif.JPG ├── .mvn │ └── wrapper │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties └── .gitignore ├── selenium-allure2-junit5 └── web-ui-test │ ├── properties │ ├── browser │ │ ├── firefox.properties │ │ ├── ie.properties │ │ ├── edge.properties │ │ ├── safari.properties │ │ └── chrome.properties │ ├── address │ │ └── address.prod.properties │ ├── default │ │ ├── META-INF │ │ │ └── services │ │ │ │ └── ru.yandex.qatools.allure.experimental.LifecycleListener │ │ └── allure.properties │ ├── user │ │ ├── user.dev.properties │ │ └── user.prod.properties │ ├── webdriver.properties │ ├── env │ │ ├── env.dormant.properties │ │ ├── env.dev9.properties │ │ ├── env.local.properties │ │ ├── env.dev10.properties │ │ ├── env.dev1.properties │ │ ├── env.dev2.properties │ │ ├── env.prod.properties │ │ └── env.ecomdev01.properties │ └── test.properties │ ├── src │ ├── test │ │ └── java │ │ │ └── org │ │ │ └── automation │ │ │ └── webtest │ │ │ ├── tests │ │ │ ├── popup │ │ │ │ └── addaddress │ │ │ │ │ └── readme.md │ │ │ ├── features │ │ │ │ ├── ProductNavigationTests.java │ │ │ │ └── AddToCartTests.java │ │ │ └── page │ │ │ │ └── HelpPageTests.java │ │ │ ├── suits │ │ │ ├── SignInFeatureTest.java │ │ │ ├── pages │ │ │ │ └── ViewCartTestSuite.java │ │ │ ├── CreateAccountFeatureTest.java │ │ │ ├── RegressionTests.java │ │ │ ├── releasses │ │ │ │ └── Feb_15_regressions.java │ │ │ └── GroupTestsSuite.java │ │ │ ├── RunAll.java │ │ │ ├── steps │ │ │ └── singlepage │ │ │ │ └── DepartmentSteps.java │ │ │ └── core │ │ │ └── CommonElementTests.java │ └── main │ │ └── java │ │ └── org │ │ └── automation │ │ └── webtest │ │ ├── App.java │ │ ├── pages │ │ ├── readme.md │ │ ├── popups │ │ │ ├── PopupBase.java │ │ │ └── ContactUsPopup.java │ │ └── singlepages │ │ │ ├── AlcoholRestriction.java │ │ │ └── Department.java │ │ └── core │ │ └── DriverWindow.java │ └── lib │ └── ojdbc8.jar ├── junit-easytest ├── src │ ├── test │ │ ├── resources │ │ │ ├── test.properties │ │ │ ├── calculator2.csv │ │ │ ├── calculator3.csv │ │ │ ├── mydata.csv │ │ │ ├── cal.csv │ │ │ ├── calculator.xls │ │ │ ├── calculator2.xls │ │ │ ├── calculator.csv │ │ │ ├── log4j.properties │ │ │ └── calculator.xml │ │ └── java │ │ │ └── org │ │ │ └── automation │ │ │ ├── UnitTests │ │ │ └── SimpleTest.java │ │ │ ├── testsExamples │ │ │ ├── suits │ │ │ │ └── ParallelSuitExample.java │ │ │ ├── TestPropertiesExample.java │ │ │ ├── ParallelTestExample.java │ │ │ └── TestWithPolicyExample.java │ │ │ ├── core │ │ │ ├── DataDrivenTest.java │ │ │ ├── DataDrivenTest_withPolicy.java │ │ │ └── DataDrivenTest_withDefaultAnnotation.java │ │ │ ├── policy │ │ │ ├── PerformanceTestPolicyExample.java │ │ │ ├── RegressionPolicyExample.java │ │ │ └── PolicyExample.java │ │ │ ├── customtype │ │ │ ├── CustomObjectConverterTest.java │ │ │ └── TestCustomObjectConverter.java │ │ │ └── reports │ │ │ └── DefaultReportExample.java │ └── main │ │ └── java │ │ └── org │ │ └── automation │ │ ├── customtype │ │ ├── MyDataService.java │ │ └── MyDataTypeConverter.java │ │ └── Calculator.java └── .gitignore ├── playwright-java └── readme.md ├── junit5-test-container └── readme.md ├── picocli-esamples └── readme.md ├── AzimoBlog ├── test-output │ ├── old │ │ ├── Default suite │ │ │ ├── groups.html │ │ │ ├── Default test.properties │ │ │ ├── reporter-output.html │ │ │ ├── methods-not-run.html │ │ │ ├── main.html │ │ │ ├── index.html │ │ │ ├── testng.xml.html │ │ │ └── classes.html │ │ └── index.html │ ├── failed.png │ ├── passed.png │ ├── skipped.png │ ├── bullet_point.png │ ├── collapseall.gif │ ├── navigator-bullet.png │ ├── testng.css │ ├── testng-failed.xml │ └── Default suite │ │ └── testng-failed.xml ├── .gitignore ├── src │ ├── Azimo │ │ └── com │ │ │ ├── Managers │ │ │ ├── LogManager.java │ │ │ └── ExceptionManager.java │ │ │ └── pages │ │ │ └── AzimoPageBase.java │ └── tests │ │ └── Nevigation.java └── README.md ├── Selenoid-examples └── readme.md ├── healenium-testing └── readme.md ├── visual-testing-with-automation └── readme.md ├── JerseyTest ├── .gitignore ├── pom.xml └── README.md ├── Extent-Junit ├── .gitignore ├── ide_running.jpg ├── generated_repot.jpg ├── project_structure.jpg └── src │ ├── main │ └── java │ │ └── org │ │ └── automation │ │ └── calculator │ │ └── Calculator.java │ └── test │ └── java │ └── org │ └── automation │ └── tests │ └── suites │ └── AllTests.java ├── Extent-TestNG ├── .gitignore ├── project.jpg ├── run_ide.jpg ├── ExtentReport.jpg ├── src │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── automation │ │ │ └── calculator │ │ │ └── Calculator.java │ └── test │ │ └── java │ │ └── resources │ │ └── testng.xml └── README.md ├── RestAssured ├── .gitignore └── src │ └── test │ └── java │ └── org │ └── automation │ ├── core │ └── TestBase.java │ ├── suits │ └── RegressionTest.java │ └── tests │ ├── readme.md │ └── ExceptionTests.java ├── webdriver.io-examples └── readme.md ├── Selenide-Junit ├── properties │ ├── opencart │ │ ├── env.dev.properties │ │ ├── env.qa.properties │ │ └── env.prod.properties │ ├── default │ │ ├── META-INF │ │ │ └── services │ │ │ │ └── ru.yandex.qatools.allure.experimental.LifecycleListener │ │ ├── allure.properties │ │ └── log4j.properties │ └── test.properties ├── .gitignore ├── src │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── automation │ │ │ ├── pages │ │ │ ├── PageBase.java │ │ │ ├── webgoat │ │ │ │ ├── HomePage.java │ │ │ │ └── LoginPage.java │ │ │ └── opencart │ │ │ │ ├── AboutUs.java │ │ │ │ ├── common │ │ │ │ ├── ProductCatagoryLinkCreator.java │ │ │ │ └── ProductOpenCartPageCommon.java │ │ │ │ ├── HomeOpenCartPage.java │ │ │ │ ├── ResultOpenCartPage.java │ │ │ │ ├── core │ │ │ │ └── OpenCartPageBase.java │ │ │ │ └── LoginOpenCartPage.java │ │ │ ├── steps │ │ │ └── webgoat │ │ │ │ └── UserSteps.java │ │ │ ├── core │ │ │ └── WebGoatConfig.java │ │ │ └── model │ │ │ └── WebGoatUser.java │ └── test │ │ └── java │ │ └── org │ │ └── automation │ │ ├── core │ │ └── TestBase.java │ │ ├── tests │ │ ├── google │ │ │ └── InitialTest.java │ │ └── DummyTest.java │ │ └── validation │ │ ├── LinkValidator.java │ │ └── validator.java └── README.md ├── Serenity-RestAssured ├── .gitignore ├── src │ └── test │ │ └── java │ │ ├── org │ │ └── automation │ │ │ └── suits │ │ │ └── RegressionTest.java │ │ └── resources │ │ └── log4j.properties └── README.md ├── jelenium-example └── readme.md ├── Junit-cucumber ├── readme.md ├── .gitignore └── src │ ├── main │ └── java │ │ └── org │ │ ├── calculator │ │ └── Calculator.java │ │ ├── automation │ │ └── CompletePage.java │ │ └── pages │ │ ├── SearchPanel.java │ │ ├── HomePage.java │ │ └── SearchResultPage.java │ └── test │ ├── resources │ └── features │ │ ├── calculator.feature │ │ ├── search.feature │ │ └── search2.feature │ └── java │ └── org │ └── automation │ └── tests │ ├── CalculatorTests.java │ ├── CucumberTest.java │ └── OpencartTests.java ├── justtestlah-example └── readme.md ├── .gitignore ├── Allure-cucumber ├── src │ ├── test │ │ ├── resources │ │ │ ├── junit-platform.properties │ │ │ ├── allure.properties │ │ │ └── features │ │ │ │ └── calculator.feature │ │ └── java │ │ │ └── org │ │ │ └── automation │ │ │ └── CucumberRunner.java │ └── main │ │ └── java │ │ └── org │ │ └── calculator │ │ └── Calculator.java └── .gitignore ├── karate-junit-allure └── readme.md ├── artillery-example └── readme.md ├── awaitility-junit └── readme.md ├── gauge-java ├── img │ └── install.jpg ├── .gitignore ├── pom.xml └── readme.md ├── AssertJ-DB-Example └── readme.md ├── Junit-report ├── .gitignore ├── README.md └── src │ ├── test │ └── java │ │ └── org │ │ └── automation │ │ └── TestCalculator.java │ └── main │ └── java │ └── org │ └── automation │ └── Calculator.java ├── junitbenchmark ├── .gitignore ├── charts │ ├── .benchmarks.mv.db │ ├── org.performance.TestCalculator.jsonp │ ├── org.performance.TestCalculator_MethodLevelExample.jsonp │ ├── benchmark-lists2.jsonp │ ├── org.performance.custom.PerfTest_custom.jsonp │ └── benchmark-lists.jsonp └── src │ ├── test │ ├── resources │ │ ├── jub.properties │ │ └── data │ │ │ └── hsqldb │ │ │ ├── data.sql │ │ │ └── schema.sql │ └── java │ │ └── org │ │ └── performance │ │ └── custom │ │ └── PerfTest_custom.java │ └── main │ └── java │ └── org │ └── performance │ └── Calculator.java ├── k6-perf-test ├── images │ └── first-test.jpg └── opencart-perf-test │ ├── first-run-single-user-opencart.jpg │ └── opencart-perf-test.js ├── spock-junit5 ├── readme.md ├── .gitignore ├── pom.xml └── src │ └── main │ └── java │ └── org │ └── example │ └── spock │ └── junit5 │ └── Main.java ├── Playwright-Testing ├── images │ └── install.jpg └── readme.md ├── htmlelement-eamples ├── src │ └── test │ │ └── java │ │ ├── org │ │ ├── owasp │ │ │ └── webgoat │ │ │ │ └── WebGoatPageBase.java │ │ ├── automation │ │ │ ├── exceptions │ │ │ │ └── CannotClickElementException.java │ │ │ ├── PageBase.java │ │ │ └── RandomizeHelper.java │ │ └── pages │ │ │ └── utils │ │ │ └── UtilBase.java │ │ └── com │ │ └── opencart │ │ └── demo │ │ └── OpenCartPageBase.java ├── readme.md └── Doc │ └── How to use ├── jprotractor-ngWebDriver └── readme.md ├── Cucumber-Parallel ├── generated_runners.JPG ├── .gitignore ├── src │ ├── test │ │ ├── resources │ │ │ └── org │ │ │ │ └── automation │ │ │ │ ├── calculator-add.feature │ │ │ │ ├── calculator-sub.feature │ │ │ │ ├── calculator-mul.feature │ │ │ │ ├── calculator-div.feature │ │ │ │ └── cucumber-runner.java.vm │ │ └── java │ │ │ └── org │ │ │ └── automation │ │ │ └── CucumberRunner.java │ └── main │ │ └── java │ │ └── org │ │ └── automation │ │ └── Calculator.java └── README.md ├── jira-java-example └── .gitignore ├── WebDriverManager ├── src │ └── test │ │ ├── resources │ │ └── test.properties │ │ └── java │ │ └── org │ │ └── automation │ │ └── core │ │ └── App.java ├── .gitignore └── README.md ├── jspringbot └── readme.md ├── Junit-XmlUnit ├── .gitignore ├── src │ └── test │ │ ├── resources │ │ ├── test2a.xml │ │ └── test1a.xml │ │ └── java │ │ └── TestXmlCompare.java ├── README.md └── pom.xml ├── AllureJunit ├── .gitignore ├── src │ └── test │ │ ├── resources │ │ ├── allure.properties │ │ └── log4j.properties │ │ └── java │ │ └── org │ │ └── automation │ │ ├── core │ │ ├── MyRunner.java │ │ └── TestRule_ScreenShotOnEachStep.java │ │ ├── suits │ │ └── TestSuitForAttachment.java │ │ └── unitTests │ │ ├── TestWithDescription.java │ │ └── TestWithFeatures.java └── README.md ├── Allure-cucumber-failsafe ├── .gitignore ├── src │ ├── main │ │ └── java │ │ │ └── org │ │ │ └── calculator │ │ │ └── Calculator.java │ └── test │ │ ├── resources │ │ ├── allure.properties │ │ └── features │ │ │ └── calculator.feature │ │ └── java │ │ └── org │ │ └── automation │ │ └── CucumberRunner.java └── README.md ├── frameworkium └── readme.md ├── unirest-apt-test ├── src │ └── test │ │ └── java │ │ └── org │ │ └── automation │ │ └── unirest │ │ ├── core │ │ └── ApiTestBase.java │ │ ├── tests │ │ └── UserTest.java │ │ └── config │ │ └── PropertyLoader.java ├── readme.md └── .gitignore ├── PyAutoGUI-example └── readme.md └── zalenium └── readme.md /AllureTestNG/Doc/jenkins job: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SoapUi/testcases/app.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Serenity-Junit/Doc/page_object.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Serenity-Junit/Doc/project structure: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ChromeHeadless-Selenium/Logs/chrome.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SoapUi/src/main/resources/soapui.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pylenium/readme.md: -------------------------------------------------------------------------------- 1 | # pylenium example(todo) -------------------------------------------------------------------------------- /WiniumJunit/src/main/resources/test.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytest-allure/readme.md: -------------------------------------------------------------------------------- 1 | # Pytest with allure 2 | -------------------------------------------------------------------------------- /sikulix-junit/src/test/resources/test.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /junit-fitnesse/src/test/resources/plugins.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JfrUnit-example/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .git 3 | .target/ -------------------------------------------------------------------------------- /pytest-allure-behave/readme.md: -------------------------------------------------------------------------------- 1 | # Pytest with behave 2 | -------------------------------------------------------------------------------- /junit5-executable/test-classes.ini: -------------------------------------------------------------------------------- 1 | AdhocTests 2 | ExceptionTests -------------------------------------------------------------------------------- /testng-executable/suite.ini: -------------------------------------------------------------------------------- 1 | AdhocTests.xml 2 | ExceptionTests.xml -------------------------------------------------------------------------------- /Allure2-Junit5/data/addition.csv: -------------------------------------------------------------------------------- 1 | a,b,result 2 | 5,7,12 3 | 2.2,7.5,9.7 -------------------------------------------------------------------------------- /ChromeHeadless-Selenium/Screenshots/readme.md: -------------------------------------------------------------------------------- 1 | # Screenshot from chrome -------------------------------------------------------------------------------- /junit5-executable/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | target 3 | *iml 4 | test-output -------------------------------------------------------------------------------- /selenium-allure2-junit5/web-ui-test/properties/browser/firefox.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WiniumJunit/run_driver.cmd: -------------------------------------------------------------------------------- 1 | @echo 2 | cd driver 3 | Winium.Desktop.Driver.exe -------------------------------------------------------------------------------- /junit-easytest/src/test/resources/test.properties: -------------------------------------------------------------------------------- 1 | test.title=Easy Test Demos -------------------------------------------------------------------------------- /playwright-java/readme.md: -------------------------------------------------------------------------------- 1 | # playwright example with Java 2 | - init plan 3 | -------------------------------------------------------------------------------- /selenium-allure2-junit5/web-ui-test/properties/address/address.prod.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /junit5-test-container/readme.md: -------------------------------------------------------------------------------- 1 | # [Test Container](https://www.testcontainers.org/) -------------------------------------------------------------------------------- /picocli-esamples/readme.md: -------------------------------------------------------------------------------- 1 | 2 | modern JVM CLI utils 3 | 4 | https://picocli.info/ -------------------------------------------------------------------------------- /testng-executable/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .iml 3 | target 4 | output 5 | test-output -------------------------------------------------------------------------------- /junit-easytest/src/test/resources/calculator2.csv: -------------------------------------------------------------------------------- 1 | testAdd,a,b,expected 2 | ,11.0,16.0,27 -------------------------------------------------------------------------------- /junit-easytest/src/test/resources/calculator3.csv: -------------------------------------------------------------------------------- 1 | testAdd,a,b,expected 2 | ,25.0,25.0,50 -------------------------------------------------------------------------------- /AzimoBlog/test-output/old/Default suite/groups.html: -------------------------------------------------------------------------------- 1 |
Test results
6 || Suite | Passed | Failed | Skipped | testng.xml |
|---|---|---|---|---|
| Total | 0 | 1 | 0 | |
| Default suite | 9 |0 | 1 | 0 | Link |
| Class name | 4 |Method name | 5 |Groups | 6 |
|---|---|---|
| tests.Nevigation | 8 |||
| @Test | 11 |||
| 14 | | test | 15 ||
| @BeforeClass | 18 |||
| 21 | | init | 22 ||
| @BeforeMethod | 25 |||
| @AfterMethod | 28 |||
| @AfterClass | 31 |||
| 34 | | End | 35 ||