├── README.md ├── dotnet ├── .gitignore ├── GitHubAutomation.sln └── GitHubAutomation │ ├── Driver │ └── DriverInstance.cs │ ├── DriverBinaries │ └── geckodriver.exe │ ├── GitHubAutomation.csproj │ ├── Pages │ ├── CreateNewRepositoryPage.cs │ ├── LoginPage.cs │ └── MainPage.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Steps │ └── Steps.cs │ ├── Tests │ └── SmokeTests.cs │ ├── Utils │ └── RandomGenerator.cs │ └── packages.config └── java ├── .gitignore └── GitHubAutomation ├── pom.xml └── src └── test ├── java └── com │ └── epam │ └── ta │ ├── driver │ └── DriverSingleton.java │ ├── model │ └── User.java │ ├── page │ ├── AbstractPage.java │ ├── CreateNewRepositoryPage.java │ ├── LoginPage.java │ └── MainPage.java │ ├── service │ ├── TestDataReader.java │ └── UserCreator.java │ ├── test │ ├── CommonConditions.java │ ├── RepositoryManagementTests.java │ └── UserAccessTests.java │ └── util │ ├── StringUtils.java │ └── TestListener.java └── resources ├── dev.properties ├── log4j2.xml ├── qa.properties ├── staging.properties ├── testng-all.xml └── testng-smoke.xml /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitalliuss/github-automation/HEAD/README.md -------------------------------------------------------------------------------- /dotnet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitalliuss/github-automation/HEAD/dotnet/.gitignore -------------------------------------------------------------------------------- /dotnet/GitHubAutomation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitalliuss/github-automation/HEAD/dotnet/GitHubAutomation.sln -------------------------------------------------------------------------------- /dotnet/GitHubAutomation/Driver/DriverInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitalliuss/github-automation/HEAD/dotnet/GitHubAutomation/Driver/DriverInstance.cs -------------------------------------------------------------------------------- /dotnet/GitHubAutomation/DriverBinaries/geckodriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitalliuss/github-automation/HEAD/dotnet/GitHubAutomation/DriverBinaries/geckodriver.exe -------------------------------------------------------------------------------- /dotnet/GitHubAutomation/GitHubAutomation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitalliuss/github-automation/HEAD/dotnet/GitHubAutomation/GitHubAutomation.csproj -------------------------------------------------------------------------------- /dotnet/GitHubAutomation/Pages/CreateNewRepositoryPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitalliuss/github-automation/HEAD/dotnet/GitHubAutomation/Pages/CreateNewRepositoryPage.cs -------------------------------------------------------------------------------- /dotnet/GitHubAutomation/Pages/LoginPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitalliuss/github-automation/HEAD/dotnet/GitHubAutomation/Pages/LoginPage.cs -------------------------------------------------------------------------------- /dotnet/GitHubAutomation/Pages/MainPage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitalliuss/github-automation/HEAD/dotnet/GitHubAutomation/Pages/MainPage.cs -------------------------------------------------------------------------------- /dotnet/GitHubAutomation/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitalliuss/github-automation/HEAD/dotnet/GitHubAutomation/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /dotnet/GitHubAutomation/Steps/Steps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitalliuss/github-automation/HEAD/dotnet/GitHubAutomation/Steps/Steps.cs -------------------------------------------------------------------------------- /dotnet/GitHubAutomation/Tests/SmokeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitalliuss/github-automation/HEAD/dotnet/GitHubAutomation/Tests/SmokeTests.cs -------------------------------------------------------------------------------- /dotnet/GitHubAutomation/Utils/RandomGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitalliuss/github-automation/HEAD/dotnet/GitHubAutomation/Utils/RandomGenerator.cs -------------------------------------------------------------------------------- /dotnet/GitHubAutomation/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitalliuss/github-automation/HEAD/dotnet/GitHubAutomation/packages.config -------------------------------------------------------------------------------- /java/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitalliuss/github-automation/HEAD/java/.gitignore -------------------------------------------------------------------------------- /java/GitHubAutomation/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitalliuss/github-automation/HEAD/java/GitHubAutomation/pom.xml -------------------------------------------------------------------------------- /java/GitHubAutomation/src/test/java/com/epam/ta/driver/DriverSingleton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitalliuss/github-automation/HEAD/java/GitHubAutomation/src/test/java/com/epam/ta/driver/DriverSingleton.java -------------------------------------------------------------------------------- /java/GitHubAutomation/src/test/java/com/epam/ta/model/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitalliuss/github-automation/HEAD/java/GitHubAutomation/src/test/java/com/epam/ta/model/User.java -------------------------------------------------------------------------------- /java/GitHubAutomation/src/test/java/com/epam/ta/page/AbstractPage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitalliuss/github-automation/HEAD/java/GitHubAutomation/src/test/java/com/epam/ta/page/AbstractPage.java -------------------------------------------------------------------------------- /java/GitHubAutomation/src/test/java/com/epam/ta/page/CreateNewRepositoryPage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitalliuss/github-automation/HEAD/java/GitHubAutomation/src/test/java/com/epam/ta/page/CreateNewRepositoryPage.java -------------------------------------------------------------------------------- /java/GitHubAutomation/src/test/java/com/epam/ta/page/LoginPage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitalliuss/github-automation/HEAD/java/GitHubAutomation/src/test/java/com/epam/ta/page/LoginPage.java -------------------------------------------------------------------------------- /java/GitHubAutomation/src/test/java/com/epam/ta/page/MainPage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitalliuss/github-automation/HEAD/java/GitHubAutomation/src/test/java/com/epam/ta/page/MainPage.java -------------------------------------------------------------------------------- /java/GitHubAutomation/src/test/java/com/epam/ta/service/TestDataReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitalliuss/github-automation/HEAD/java/GitHubAutomation/src/test/java/com/epam/ta/service/TestDataReader.java -------------------------------------------------------------------------------- /java/GitHubAutomation/src/test/java/com/epam/ta/service/UserCreator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitalliuss/github-automation/HEAD/java/GitHubAutomation/src/test/java/com/epam/ta/service/UserCreator.java -------------------------------------------------------------------------------- /java/GitHubAutomation/src/test/java/com/epam/ta/test/CommonConditions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitalliuss/github-automation/HEAD/java/GitHubAutomation/src/test/java/com/epam/ta/test/CommonConditions.java -------------------------------------------------------------------------------- /java/GitHubAutomation/src/test/java/com/epam/ta/test/RepositoryManagementTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitalliuss/github-automation/HEAD/java/GitHubAutomation/src/test/java/com/epam/ta/test/RepositoryManagementTests.java -------------------------------------------------------------------------------- /java/GitHubAutomation/src/test/java/com/epam/ta/test/UserAccessTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitalliuss/github-automation/HEAD/java/GitHubAutomation/src/test/java/com/epam/ta/test/UserAccessTests.java -------------------------------------------------------------------------------- /java/GitHubAutomation/src/test/java/com/epam/ta/util/StringUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitalliuss/github-automation/HEAD/java/GitHubAutomation/src/test/java/com/epam/ta/util/StringUtils.java -------------------------------------------------------------------------------- /java/GitHubAutomation/src/test/java/com/epam/ta/util/TestListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitalliuss/github-automation/HEAD/java/GitHubAutomation/src/test/java/com/epam/ta/util/TestListener.java -------------------------------------------------------------------------------- /java/GitHubAutomation/src/test/resources/dev.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitalliuss/github-automation/HEAD/java/GitHubAutomation/src/test/resources/dev.properties -------------------------------------------------------------------------------- /java/GitHubAutomation/src/test/resources/log4j2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitalliuss/github-automation/HEAD/java/GitHubAutomation/src/test/resources/log4j2.xml -------------------------------------------------------------------------------- /java/GitHubAutomation/src/test/resources/qa.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitalliuss/github-automation/HEAD/java/GitHubAutomation/src/test/resources/qa.properties -------------------------------------------------------------------------------- /java/GitHubAutomation/src/test/resources/staging.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitalliuss/github-automation/HEAD/java/GitHubAutomation/src/test/resources/staging.properties -------------------------------------------------------------------------------- /java/GitHubAutomation/src/test/resources/testng-all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitalliuss/github-automation/HEAD/java/GitHubAutomation/src/test/resources/testng-all.xml -------------------------------------------------------------------------------- /java/GitHubAutomation/src/test/resources/testng-smoke.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vitalliuss/github-automation/HEAD/java/GitHubAutomation/src/test/resources/testng-smoke.xml --------------------------------------------------------------------------------