Is it possible for us to integrate selenium web driver test with Bugzilla?
My intention are as below:
If we can integrate web driver with Bugzilla,
- can we automatically attach screen shot of failed tests?
- can we record/save the steps that made the bug?
-
What language are you using to drive the selenium tests?craastad– craastad2013年12月12日 08:49:55 +00:00Commented Dec 12, 2013 at 8:49
-
Well u can automate Bugzilla Web UI using selenium webdriver...that way u can integrate ur tests and their results with Bug zilla.Anuragh27crony– Anuragh27crony2013年12月12日 09:03:25 +00:00Commented Dec 12, 2013 at 9:03
3 Answers 3
I don't see why this couldn't be done if you have a code driven Selenium test suite. You would need to implement a method run on test failure that adds a bug to Bugzilla using their HTTP REST API.
For the first step, if you are using Java, see this answer on taking a screenshot when selenium fails and the referenced blog post. You need to similarily create a new rule, except this time to add a bug to Bugzilla (and hopefully any useful information, logging, that would help you make it useful).
Then here's an answer and link to the Bugzilla REST API Docs on how to file a bug.
I was able to do something on this lines. Here is the link for the same http://jitendrajogeshwar.wordpress.com/
-
Could you please describe what you did here? There's no guarantee your link will still be around a few years from now.Kate Paulk– Kate Paulk2014年01月02日 17:34:52 +00:00Commented Jan 2, 2014 at 17:34
-
The is working fine and it has been recently updated by me. I have tried to explain in details about how I went about itJitendra Jogeshwar– Jitendra Jogeshwar2014年01月03日 06:09:28 +00:00Commented Jan 3, 2014 at 6:09
Explore related questions
See similar questions with these tags.