I work as a Senior Quality Engineer. Have experience in automation, security testing, code coverage, test cycles. In terms of tools and frameworks, have worked with Selenium, Webdriver, TestNG, Maven, Jenkins, GIT, Bullseye Code coverage. My primary interest lies in test automation and frameworks. Enjoy learning new things both in and out of technology, reading fiction novels and good music.

May
8
comment How to group test cases in testng?
BeforeTest and AfterTest run after the <test> tag that you define in your xml. What you mark with @Test is known as Method in testng parlance
May
7
comment Testng test methods execution order not proper after specifying preserve order
What is the version of the testng plugin and what is the version of testng in your Pom?
May
7
answered How to group test cases in testng?
May
7
comment Jenkins Inegration with TestNG.(when running from jenkins it's not invoking browser)
When u say tests are running..do they pass or all fail ..with what error, if they fail? The tests would run on the mc where Jenkins is runnin..unless until u hv configured a grid? Is ur Jenkins hosted on ur local mc?
Apr
24
comment get Annotation of test method in testNG ITestListener
Well..glad this worked out for you. It seems getMethod is deprecated..you can try using method.getTestMethod().getConstructorOrMethod().getMethod().getAnnotation(org.te­stng.annotations.Test.class)
Apr
24
comment get Annotation of test method in testNG ITestListener
The testName should not be used at method level. If u use it at method level u cannot get it through code since testName is not meant to be used at method level. testName makes sense only if you have @Test at your class level. eg. if class A had 4 tests, test1 to test4(), then instead of annotating at each method level you can also annotate the class i.e. \@Test \n public void classA{..test1() to test4()..}. Now in this '@Test' annotation testName makes sense. But not at the '@Test' at method level.
Apr
24
comment get Annotation of test method in testNG ITestListener
Added to my answer..
Apr
24
revised get Annotation of test method in testNG ITestListener
added 394 characters in body
Apr
24
answered get Annotation of test method in testNG ITestListener
Apr
23
comment handling submenu item with webdriver selenium
Edited my answer..try that out..if its a site u can share..then share the url..
Apr
23
revised handling submenu item with webdriver selenium
added 358 characters in body
Apr
23
answered Selenuim WebDriver and Grid 2
Apr
23
answered how to implement dependency between multiple tests run in parallel and the final test to be run in testNG?
Apr
23
answered handling submenu item with webdriver selenium
Apr
23
answered Eclipse Run As doesn't show Junit or testNG option
Apr
21
comment how to implement dependency between multiple tests run in parallel and the final test to be run in testNG?
These results are custom results? I would believe the reports generated by testng would be generated after all suites will be run, in which case the results would not even be there when the second suite runs.
Apr
21
answered Cleanup after each test method in testng framework
Apr
18
comment Having Problems Running my Testng Test Suite on Jenkins
is ur testcode available in the workspace?
Apr
18
comment TestNG testcases not getting executed
oh not sure about that..mine is at 6.8
Apr
18
comment TestNG testcases not getting executed
I actually tried without my suite xml too and that also was workin just fine with the same version as u have.. Hmm strange. :)
1 2 3 4 5