Entradas

Mostrando las entradas de junio, 2021

Gherkin Makes Test-Scenarios Easy to Read

Imagen
Feature : Calculator   Calculator for adding two numbers   @mytag Scenario : Add two numbers Add two numbers with the calculator Given  I have entered  <First>  into the calculator And  I have entered  <Second>  into the calculator   When  I press add Then  the result should be  <Result>  on the screen Examples: | First | Second | Result | | 50    | 70     | 120    | | 30    | 40     | 70     | | 60    | 30     | 90     | With Gherkin, you can use your native language to describe test cases instead of difficult to read and understand camelcase test-method-names.

What are the factors to consider while moving from Manual to Automated Browser Testing?

Imagen
Repetitive tests for multiple builds. Tests where human errors are involved. Tests where data set is involved. Functions that are frequently used with high risk. Time-consuming tests. Tests involving different hardware and software configurations. Tests that are impossible to automate.