@@ -57,4 +57,44 @@ Feature: DB operations
57
57
58
58
@DbOps12 @DBParallel @DbOpsAll
59
59
Scenario : 12 Use select query to validate DB table from file - return 1 row - Fail
60
- Then validate data does not exist for select query from file "/DbOps/scenario12/SelQuery.sql"
60
+ Then validate data does not exist for select query from file "/DbOps/scenario12/SelQuery.sql"
61
+
62
+ @DbOps13 @DBParallel @DbOpsAll
63
+ Scenario : 13 Use select query and context value to validate DB table - return 1 row - Success
64
+ * put 'abhishek kadavil' in context value 'name'
65
+ Then validate data exist for select query 'select * from users where name = ' and where condition as a context value 'name'
66
+
67
+ @DbOps14 @DBParallel @DbOpsAll
68
+ Scenario : 14 Use select query and context value to validate DB table - return 0 row - Fail
69
+ * put 'abhishek kadavil1' in context value 'name'
70
+ Then validate data exist for select query 'select * from users where name = ' and where condition as a context value 'name'
71
+
72
+ @DbOps15 @DBParallel @DbOpsAll
73
+ Scenario : 15 Use select query and context value to validate DB table - return 0 row - Success
74
+ * put 'abhishek kadavil1' in context value 'name'
75
+ Then validate data not exist for select query 'select * from users where name = ' and where condition as a context value 'name'
76
+
77
+ @DbOps16 @DBParallel @DbOpsAll
78
+ Scenario : 16 Use select query and context value to validate DB table - return 1 row - Fail
79
+ * put 'abhishek kadavil' in context value 'name'
80
+ Then validate data not exist for select query 'select * from users where name = ' and where condition as a context value 'name'
81
+
82
+ @DbOps17 @DBParallel @DbOpsAll
83
+ Scenario : 17 Use select query from file and context value to validate DB table - return 1 row - Success
84
+ * put 'abhishek kadavil' in context value 'name'
85
+ Then validate data exist for select query from file "/DbOps/scenario17/SelQuery.sql" and context value 'name'
86
+
87
+ @DbOps18 @DBParallel @DbOpsAll
88
+ Scenario : 18 Use select query from file and context value to validate DB table - return 0 row - fail
89
+ * put 'abhishek kadavil1' in context value 'name'
90
+ Then validate data exist for select query from file "/DbOps/scenario18/SelQuery.sql" and context value 'name'
91
+
92
+ @DbOps19 @DBParallel @DbOpsAll
93
+ Scenario : 19 Use select query from file and context value to validate DB table - return 0 row - Success
94
+ * put 'abhishek kadavil1' in context value 'name'
95
+ Then validate data not exist for select query from file "/DbOps/scenario17/SelQuery.sql" and context value 'name'
96
+
97
+ @DbOps20 @DBParallel @DbOpsAll
98
+ Scenario : 20 Use select query from file and context value to validate DB table - return 1 row - fail
99
+ * put 'abhishek kadavil' in context value 'name'
100
+ Then validate data not exist for select query from file "/DbOps/scenario18/SelQuery.sql" and context value 'name'
0 commit comments