Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
cbdfd42
JUnit Test Framework Design
Ismet-8-3 Nov 8, 2024
0bcb009
Merge pull request #1 from Ismet-8-3/Junit-Testing-Framework-Design
Ismet-8-3 Nov 8, 2024
e4473dd
JUnit Test Framework Design
Ismet-8-3 Nov 10, 2024
84d6e70
Merge pull request #2 from Ismet-8-3/page-object-model-design
Ismet-8-3 Nov 10, 2024
f89423a
TestNG Annotation and attributes.
Ismet-8-3 Nov 10, 2024
372c64d
Merge pull request #3 from Ismet-8-3/master
Ismet-8-3 Nov 10, 2024
8067605
Merge pull request #4 from Ismet-8-3/page-object-model-design
Ismet-8-3 Nov 10, 2024
4d4f8c9
TestNG Annotation and attributes.
Ismet-8-3 Nov 13, 2024
a7be9a7
Merge remote-tracking branch 'origin/master'
Ismet-8-3 Nov 13, 2024
1db862e
TestNG Annotation and attributes.
Ismet-8-3 Nov 14, 2024
e271149
mahara login
Ismet-8-3 Nov 14, 2024
f0d316e
mahara login
Ismet-8-3 Nov 14, 2024
8d93be0
mahara login
Ismet-8-3 Nov 14, 2024
8dc2f05
mahara login
Ismet-8-3 Nov 18, 2024
5cfa6cc
mahara login
Ismet-8-3 Nov 18, 2024
adac6ca
TestNG Annotation and attributes.
Ismet-8-3 Nov 18, 2024
a4a85e9
TestNG Annotation and attributes.
Ismet-8-3 Nov 18, 2024
b9ecebb
TestNG Annotation and attributes.
Ismet-8-3 Nov 21, 2024
2f9a45e
TestNG Annotation and attributes.
Ismet-8-3 Nov 25, 2024
e711d6a
TestNG Annotation and attributes.
Ismet-8-3 Nov 25, 2024
d7ef437
TestNG Annotation and attributes.
Ismet-8-3 Nov 26, 2024
da67467
TestNG Annotation and attributes.
Ismet-8-3 Nov 27, 2024
1e18ad5
TestNG Annotation and attributes.
Ismet-8-3 Nov 29, 2024
8441e5f
TestNG Annotation and attributes.
Ismet-8-3 Dec 8, 2024
dae9908
Merge pull request #5 from Ismet-8-3/Selenium-Advanced-actions-Code
Ismet-8-3 Dec 8, 2024
042f2d6
TestNG Annotation and attributes.
Ismet-8-3 Dec 17, 2024
f07e8fc
TestNG Annotation and attributes.
Ismet-8-3 Dec 17, 2024
32e90ea
TestNG Annotation and attributes.
Ismet-8-3 Dec 17, 2024
4760a2c
TestNG Annotation and attributes.Actions
Ismet-8-3 Dec 17, 2024
24393a7
TestNG Annotation and attributes.
Ismet-8-3 Feb 19, 2026
ca1c38e
File
Ismet-8-3 Feb 20, 2026
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
target/
.idea/
SeleniumJavaTests.iml/
2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

141 changes: 33 additions & 108 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions SeleniumJavaTests.iml

This file was deleted.

4 changes: 2 additions & 2 deletions config-qa.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
produrl=#
qaurl=#
#user info
username=3
password=#
username=admin
password=MaharaDemo
timeout=5
20 changes: 20 additions & 0 deletions parallel-test.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE suite SYSTEM "https://testng.org/testng-1.0.dtd">

<suite name="CubeCart Application Test" parallel="tests" thread-count="2" verbose="3">
<listeners>
<listener class-name="org.testng.reporters.EmailableReporter2"></listener>
</listeners>
<test name="Customer Module Test">
<classes>
<class name="testngframework.DataProviderDemo2"></class>

</classes>
</test>

<test name="Pruduct Test">
<classes>
<class name="testngframework.DataProviderDemo1"></class>
</classes>
</test>

</suite>
Loading