One Shore is my software QA services company. I specialize in test automation with open source tools.
One Shore is my software QA services company. I specialize in test automation with open source tools.
Hi, I'm Aaron Evans. I am an independent software tester with 10+ years experience.
In 2005 I quit my job and moved to Fiji, then sailed to Australia. But I came back for the girl I left behind.
We got married, moved to Ecuador, and had a son named Harmon. We currently live in the Seattle Washington area.
One Shore is my software QA services company. I specialize in test automation with open source tools.
If interested, write or call me at 425-242-4304.
Blog at WordPress.com. | Theme: Ocean Mist by Ed Merritt.
Who was the girl you left behind?
By: Momeree on June 13, 2010
at 9:08 pm
It was Kelsey
By: fijiaaron on August 20, 2010
at 8:48 am
Can you please help me with the integration of selenium with quality center?
By: sneha on November 16, 2011
at 3:17 am
The steps I’ve used for Selenium / QC integration are:
1. Write tests with Selenium using an open source test framework (JUnit/TestNG/PHPUnit/NUnit/RSpec/py.test)
2. Map your test cases to QC test cases. I described how I did this in detail by extending JUnit in these posts:
Integrating JUnit tests with HP/Mercury Quality Center
Note that this isn’t necessarily the way I’d do it now. Annotations are useful, but I think a mapping file is perhaps easier. Simple create a spreadsheet with the QC TestId in one column and the xUnit test name in another column. This is a little trickier with parameterized tests.
3. Parse the tests results from your test runner and update Quality Center using the OTA API (OTAClient.dll is installed with QC Explorer & can be downloaded from QC. Go to Help->Addins Page->HP Quality Center Client Side Setup Add-in)
I have a quick example of how to connect to Quality Center using OTAClient here:
http://fijiaaron.wordpress.com/2010/08/28/connecting-to-hpmercury-quality-center-from-a-client-side-script/
Further details about using OTAClient are forthcoming.
You can check out my sample QCIntegration project on GitHub:
http://github.com/fijiaaron/QCIntegration
By: fijiaaron on November 16, 2011
at 3:17 pm