Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
08f4410
remove all implementation details
nadvolod Feb 24, 2020
7094718
remove parallelization
nadvolod Feb 26, 2020
2f16bf3
final code
nadvolod Mar 2, 2020
4867f14
working parallel cross browser tests
nadvolod Mar 3, 2020
3db2e50
optimized imports
nadvolod May 1, 2020
00909d3
remove unused imports
nadvolod May 1, 2020
ba7db08
working cross browser
nadvolod May 1, 2020
372ad8a
add test watcher
nadvolod May 7, 2020
932a807
add sauce test watcher
nadvolod May 8, 2020
59f4dc4
add 2 more tests
nadvolod May 9, 2020
f42dafb
test pipeline
nadvolod May 9, 2020
a3245f4
test pipeline
nadvolod May 9, 2020
7c4fa4a
try again
nadvolod May 9, 2020
2e5142d
Merge branch 'master' into cross_browser_sauce_bindings
nadvolod May 10, 2020
96469b6
fix compilation issue
nadvolod May 10, 2020
2547de3
decrease timeout exception
nadvolod May 10, 2020
759e48a
updat .yml
nadvolod May 10, 2020
1aa7ac1
Merge branch 'master' into cross_browser_sauce_bindings
nadvolod May 10, 2020
ddd2dd6
delete unecessary code
nadvolod Aug 3, 2020
03d903d
turn on 100 parallel
nadvolod Aug 3, 2020
470eca9
rename package
nadvolod Aug 4, 2020
62901d4
add yml
nadvolod Aug 4, 2020
3176ba7
change to ci3
nadvolod Aug 4, 2020
ce7dc88
add unit test
nadvolod Aug 4, 2020
f927ccc
add integration
nadvolod Aug 4, 2020
228d233
add acceptance
nadvolod Aug 4, 2020
769c6e1
add creds
nadvolod Aug 4, 2020
d821134
fix typo
nadvolod Aug 4, 2020
e8b48fa
add silver pipeline
nadvolod Aug 4, 2020
70d4d41
add parameters and build names
nadvolod Aug 8, 2020
9cfd593
1st pipeline
nadvolod Aug 28, 2020
51cfd03
add ci branch
nadvolod Aug 28, 2020
d36521a
add integration tests
nadvolod Aug 28, 2020
acdbe98
change branch
nadvolod Aug 28, 2020
c047cc2
add acceptance tests
nadvolod Aug 28, 2020
dd80645
add env variables
nadvolod Aug 28, 2020
3f71caf
start fresh
nadvolod Aug 31, 2020
ee38f6c
add new pipeline
nadvolod Aug 31, 2020
9309c3c
change
nadvolod Aug 31, 2020
1bbb185
change name
nadvolod Aug 31, 2020
987cf74
update yml
nadvolod Aug 31, 2020
e43bf34
add acceptance
nadvolod Aug 31, 2020
790f388
add env variables
nadvolod Aug 31, 2020
c886727
fix
nadvolod Aug 31, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/workflows/ciSelenium.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven

name: Java CI with Maven

on:
push:
branches: [ fast_ci ]
pull_request:
branches: [ fast_ci ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Run acceptance tests
env:
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
run: mvn -Dtest=*FeatureTest test
28 changes: 0 additions & 28 deletions .github/workflows/maven.yml

This file was deleted.

10 changes: 9 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
<groupId>org.ultimateqa</groupId>
<artifactId>selenium.java</artifactId>
<version>1.0-SNAPSHOT</version>

<build>
<pluginManagement>
<plugins>
Expand All @@ -20,6 +19,15 @@
<target>11</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M4</version>
<configuration>
<parallel>all</parallel>
<threadCount>100</threadCount>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
Expand Down
15 changes: 0 additions & 15 deletions src/test/java/HelloSeleniumTest.java

This file was deleted.

35 changes: 0 additions & 35 deletions src/test/java/advanced/tips/PageLoadTest.java

This file was deleted.

50 changes: 0 additions & 50 deletions src/test/java/atda/AcceptanceTestDrivenAutomationTest.java

This file was deleted.

15 changes: 0 additions & 15 deletions src/test/java/atda/BasePage.java

This file was deleted.

26 changes: 0 additions & 26 deletions src/test/java/atda/LoginPage.java

This file was deleted.

17 changes: 0 additions & 17 deletions src/test/java/atda/ProductsPage.java

This file was deleted.

91 changes: 0 additions & 91 deletions src/test/java/best/practices/Duplication.java

This file was deleted.

21 changes: 0 additions & 21 deletions src/test/java/best/practices/LoginPage.java

This file was deleted.

28 changes: 0 additions & 28 deletions src/test/java/best/practices/PersonalInfoPage.java

This file was deleted.

Loading