DEV Community

Cover image for Manual Test Case Part 1
Shajan
Shajan

Posted on

1

Manual Test Case Part 1

Q1. You are testing a form that allows users to schedule appointments with a doctor. The form has the following fields: first name, last name, email, phone number, and appointment

date/time. Some more inputs:

• If any field is blank, we should display "All fields are required"

• If the email is invalid, we should display "Please enter a valid email"

• If the phone number is invalid, we should display "Please enter a valid phone number"

• If the appointment date/time is not available, it should display "Please choose another date/time"

If all fields are correct and the appointment is available, we should schedule the appointment successfully.

For these requirements write down the correct list of conditions in form of decision table

Ans: The decision table for the doctor appointment as follows


Image description

Image of Datadog

Create and maintain end-to-end frontend tests

Learn best practices on creating frontend tests, testing on-premise apps, integrating tests into your CI/CD pipeline, and using Datadog’s testing tunnel.

Download The Guide

Top comments (0)

AWS Security LIVE!

Join us for AWS Security LIVE!

Discover the future of cloud security. Tune in live for trends, tips, and solutions from AWS and AWS Partners.

Learn More

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay