Slide 8
Slide 8 text
2nd Action: Achieve tiny but effective QA activity
● To make long-term contribution in the team, we need to accumulate trust
● To gain trust from the team, we need to make achievements in a short time
○ So let’s identify an issue which is painful but tiny enough
● Case Study: E2E Auto-test script exists, but its maintenance cost is too high
○ Example solution: Have an investigation if the script follows auto-test practices, e.g.,
Page-object model, parameterized testing, or using BDD frameworks
// login page
public class LoginPage {
…
public void login(String id, String pwd) {
// fill in login form w/ id and pwd
// click login button
// assert that MyPage is displayed
}
…
}