1

I have doubts on how to implement test automation in the company where I am currently. I was wondering what workflow do you suggest?

The project I will be working on uses, on its back-end, the Java language. At first, I want to propose the use of Selenium Webdriver with Java, but some gaps remain:

  1. How would I integrate with problem tracking tools? (Mantis or Jira)
  2. A team member suggested using Python with Selenium Webdriver, is it interesting? (I am afraid)
  3. When developers are committed to the QA environment, how would I do automated testing automatically?

Thank you in advance for your help!

Iago Frota
  • 191
  • 1
  • 11

1 Answers1

1

With the evolution of AUT (Application under Test) the project is sure to scale up vertically and horizontally. Hence to maintain a healthy Test Coverage you have to set up an Automation Test Suite to validate the Regression Tests.

Mantis and Jira both can be integrated using either of the Selenium clients Java and Python on demand.

While for Java clients testng is a popular framework, for Python clients you can use the unittest framework.

undetected Selenium
  • 183,867
  • 41
  • 278
  • 352
  • Thanks for answering! Which tool would you recommend for us to track metrics, resolved issues, amount of test that didn't pass, ...? – Iago Frota Feb 06 '21 at 00:00
  • @IagoFrota Sounds like a different question all together. Can you raise a new question as per your new requirement? Stackoverflow contributors will be happy to help you out. – undetected Selenium Feb 06 '21 at 07:17