TestNG Made Easy
75 videos • 65,580 views • by QAFox
1
What is TestNG? (TestNG - Part 1)
QAFox
Download
2
Installing TestNG and using in Projects (TestNG - Part 2)
QAFox
Download
3
Auto-generating TestNG Classes with a Test Method in Eclipse IDE (TestNG - Part 3)
QAFox
Download
4
Using TestNG Testing Framework with Selenium Automation (TestNG - Part 4)
QAFox
Download
5
Using TestNG Testing Framework with Rest Assured Framework to Automate API Tests (TestNG - Part 5)
QAFox
Download
6
Using priority attribute (TestNG - Part 6)
QAFox
Download
7
Using testng xml file for batch execution (TestNG - Part 7)
QAFox
Download
8
Assertions in TestNG (TestNG - Part 8)
QAFox
Download
9
Hard Assertions versus Soft Assertions (TestNG - Part 9)
QAFox
Download
10
TestNG Annotations (TestNG - Part 10)
QAFox
Download
11
Parameters in TestNG (TestNG - Part 11)
QAFox
Download
12
Optional Parameters in TestNG (TestNG - Part 12)
QAFox
Download
13
Enable Disable Test Cases using enabled attribute in testng xml file (TestNG - Part 13)
QAFox
Download
14
Enable Disable Test Methods using enabled attribute and @Ignore annotation (TestNG - Part 14)
QAFox
Download
15
Enable Disable Test Methods at Class level using @Ignore annotation (TestNG - Part 15)
QAFox
Download
16
Enable Disable Test Methods at Package level using @Ignore annotation (TestNG - Part 16)
QAFox
Download
17
Grouping Tests in TestNG using multiple testng xml files (TestNG - Part 17)
QAFox
Download
18
Grouping Tests in TestNG using groups attribute (TestNG - Part 18)
QAFox
Download
19
Meta Groups in TestNG (TestNG - Part 19)
QAFox
Download
20
Partial Groups in TestNG (TestNG - Part 20)
QAFox
Download
21
Sub Category Groups in TestNG and using regular expressions (TestNG - Part 21)
QAFox
Download
22
Test Dependency in TestNG using dependsOnMethods attribute (TestNG - Part 22)
QAFox
Download
23
alwaysRun attribute (TestNG - Part 23)
QAFox
Download
24
ignoreMissingDependencies attribute (TestNG - Part 24)
QAFox
Download
25
dependsOnGroups attribute (TestNG - Part 25)
QAFox
Download
26
Groups Depending on Groups using dependencies tag and depends-on attribute (TestNG - Part 26)
QAFox
Download
27
Executing Tests at Package Level (TestNG - Part 27)
QAFox
Download
28
TestNG Parameterization - DataProvider annotation and dataProvider attribute (TestNG - Part 28)
QAFox
Download
29
Naming DataProvider method using name attribute (TestNG - Part 29)
QAFox
Download
30
Parameterizing Test method with Array parameter (TestNG - Part 30)
QAFox
Download
31
Separating DataProvider into a separate Class using dataProviderClass attribute (TestNG - Part 31)
QAFox
Download
32
Multiple DataProvider methods (TestNG - Part 32)
QAFox
Download
33
Multiple DataProvider methods in multiple classes (TestNG - Part 33)
QAFox
Download
34
Why we have to use Object array to return data (TestNG - Part 34)
QAFox
Download
35
Different return types of DataProvider (TestNG - Part 35)
QAFox
Download
36
Jagged Arrays and DataProviders (TestNG - Part 36)
QAFox
Download
37
Partially passing the data from Data Provider method using indices attribute (TestNG - Part 37)
QAFox
Download
38
Reading Data from Excel files using POI API (TestNG - Part 38)
QAFox
Download
39
Reading Data from Excel files into DataProvider method using POI API (TestNG - Part 39)
QAFox
Download
40
Executing tests in parallel by specifying parallel attribute in DataProvider (TestNG - Part 40)
QAFox
Download
41
Controlling DataProvider parallel tests count by using data-provider-thread-count (TestNG - Part 41)
QAFox
Download
42
timeOut attribute (TestNG - Part 42)
QAFox
Download
43
expectedExceptions attribute (TestNG - Part 43)
QAFox
Download
44
Parallel Execution of Tests in TestNG using parallel and thread-count attributes (TestNG - Part 44)
QAFox
Download
45
parallel="tests" in TestNG Parallel execution (TestNG - Part 45)
QAFox
Download
46
parallel="tests" wont work for parallel execution at test tag level (TestNG - Part 46)
QAFox
Download
47
parallel="classes" in TestNG Parallel Execution (TestNG - Part 47)
QAFox
Download
48
parallel="methods" in TestNG Parallel Execution (TestNG - Part 48)
QAFox
Download
49
Multiple test tags, but only few test tags enabled for parallel execution (TestNG - Part 49)
QAFox
Download
50
parallel="none" in TestNG Parallel Execution (TestNG - Part 50)
QAFox
Download
51
parallel="false" in TestNG Parallel Execution (TestNG - Part 51)
QAFox
Download
52
parallel="tests" but thread-count="1" (TestNG - Part 52)
QAFox
Download
53
Can we provide thread-count as negative value for Parallel Execution (TestNG - Part 53)
QAFox
Download
54
More threads and less number of tests (TestNG - Part 54)
QAFox
Download
55
parallel="classes" or parallel="methods" specified at suite tag level (TestNG - Part 55)
QAFox
Download
56
Default thread-count when parallel attribute is only mentioned (TestNG - Part 56)
QAFox
Download
57
invocationCount attribute (TestNG - Part 57)
QAFox
Download
58
invocationTimeOut attribute (TestNG - Part 58)
QAFox
Download
59
threadPoolSize attribute (TestNG - Part 59)
QAFox
Download
60
What are Listeners? (TestNG - Part 60)
QAFox
Download
61
List of different Listeners available in TestNG Library (TestNG - Part 61)
QAFox
Download
62
Using ITestListner Listener (TestNG - Part 62)
QAFox
Download
63
Implementing Listeners at Class Level @Listeners annotation (TestNG - Part 63)
QAFox
Download
64
Implementing Listeners at Suite Level in testng xml file (TestNG - Part 64)
QAFox
Download
65
onStart() and onFinish() ITestListener methods (TestNG - Part 65)
QAFox
Download
66
Difference between listeners and annotations (TestNG - Part 66)
QAFox
Download
67
Using TestListnerAdapter class in place of ITestListener interface (TestNG - Part 67)
QAFox
Download
68
Taking screenshots for Failed Tests using Listeners (TestNG - Part 68)
QAFox
Download
69
Avoiding Screenshot Overriding (TestNG - Part 69)
QAFox
Download
70
Retrieving Test Tag name along with Test Name (TestNG - Part 70)
QAFox
Download
71
Taking screenshots for Failed Tests using Dependency Injection (TestNG - Part 71)
QAFox
Download
72
Default TestNG Reports and their real time usage (TestNG - Part 72)
QAFox
Download
73
Uninstalling TestNG from Eclipse IDE (TestNG - Part 73)
QAFox
Download
74
TestNG Retry using IRetryAnalyzer and IAnnotationTransformer (TestNG - Part 74)
QAFox
Download
75
TestNG verbose attribute - testng xml file (TestNG - Part 75)
QAFox
Download