Showing posts with label test charters. Show all posts
Showing posts with label test charters. Show all posts

Tuesday, August 15, 2023

Test tours

To explain test tours, I will start with exploratory testing.

Explotatory testing is a more creative way of testing, but doesn't mean to say it is a random testing as well. Experts say exploratory can be more effective when we make use of test chrters.

Test tours is one of the methods that we can adopt to write test charters (test purpose) for exploratory testing.

Below are some of the tours that I found in the web. All kudos to this page [1]. I am copying and pasting it here for my notes.

  • Obsessive-Compulsive tour: This tour aims to repeat the same action as often as possible. This tour can reveal bugs like applying the discount twice.
  • Bad-Neighborhood tour: Explore the area or feature that has the most errors. In this tour, you spend time on areas known to have issues.
  • Supermodel tour: This tour focuses only on surface looks and the impressions it makes. Test the UI interface and design elements like layouts, icons, flows, and colors. 
  • Museum tour: Test code that developers didn't change in a while. You can experiment with how the code functions in new environments (Android, iOS, etc.).


Featured

Selenium - Page Object Model and Action Methods

  How we change this code to PageObjectModel and action classes. 1 2 3 driver . findElement ( By . id ( "userEmail" )). sendKeys (...

Popular Posts