Iago Frota
Iago Frota

Reputation: 191

Implementation of automated workflow testing

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!

Upvotes: 1

Views: 175

Answers (1)

undetected Selenium
undetected Selenium

Reputation: 193058

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.

Upvotes: 1

Related Questions