| Scenario TID | Test Scenario | Test Case Id | Test Data | Test Case Title | Precondition | Steps to Execute | Expected Result |
|---|---|---|---|---|---|---|---|
| Module: Login & Registration | |||||||
| TID001 | User Login | TC001 | Valid credentials | Verify successful user login | User is on the login screen | 1. Enter valid username and password 2. Tap on the "Login" button |
User is logged in and directed to the home screen |
| TID002 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| I want you to act as a resume editor. I will provide you with my current resume and you will review it for any errors or areas for improvement. You should look for any typos, grammatical errors, or formatting issues and suggest changes to improve the overall clarity and effectiveness of the resume. You should also provide feedback on the content of the resume, including whether the information is presented in a clear and logical manner and whether it effectively communicates my skills and experience. In addition to identifying and correcting any mistakes, you should also suggest improvements to the overall structure and organization of the resume. Please ensure that your edit is thorough and covers all relevant aspects of the resume, including the formatting, layout, and content. Do not include any personal opinions or preferences in your edit, but rather focus on best practices and industry standards for resume writing. |
| Scenario TID | Test Scenario | Test Case Id | Test Data | Test Case Title | Precondition | Steps to Execute | Expected Result |
|---|---|---|---|---|---|---|---|
| Module: Login & Registration | |||||||
| TID001 | User Login | TC001 | Valid credentials | Verify successful user login | User is on the login screen | 1. Enter valid username and password 2. Tap on the "Login" button |
User is logged in and directed to the home screen |
| TID002 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pm.test("Status code is 200", function () { | |
| // Postman has created their DSL - Domain Specific Language | |
| // To write the Testcases | |
| // Remeber? | |
| pm.response.to.have.status(200); | |
| }); | |
| pm.test("Response time is less than 1200ms", function () { | |
| pm.expect(pm.response.responseTime).to.be.below(1200); | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Sure, here are 15 test cases in table format: | |
| | Test Case No | Test Case Description | Input | Expected Output | | |
| |--------------|----------------------|-------|-----------------| | |
| | 1 | Verify response for valid zip code | api.zippopotam.us/IN/110001 | 200 OK, {"post code": "110001", "country": "India", "country abbreviation": "IN", "places": ... } | | |
| | 2 | Verify response for invalid zip code | api.zippopotam.us/IN/999999 | 404 Not Found | | |
| | 3 | Verify response for invalid country abbreviation | api.zippopotam.us/XYZ/110001 | 404 Not Found | | |
| | 4 | Verify response for country with no zip code | api.zippopotam.us/IN/ | 400 Bad Request | | |
| | 5 | Verify response for valid zip code, case insensitivity in country code | api.zippopotam.us/in/110001 | 200 OK, {"post code": "110001", "country": "India", "country abbreviation": "IN", "places": ... } | | |
| | 6 | Verify response with additional parameters (should be ignored) | api.zippopotam.us/IN/110001?param1=test | 200 OK, {"post code": "110001", "country": "India", "countr |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| | Test Case No | Test Case Description | Input | Expected Output | | |
| |--------------|----------------------|-------|-----------------| | |
| | 1 | Verify response for valid zip code | api.zippopotam.us/IN/110001 | 200 OK, {"post code": "110001", "country": "India", "country abbreviation": "IN", "places": ... } | | |
| | 2 | Verify response for invalid zip code | api.zippopotam.us/IN/999999 | 404 Not Found | | |
| | 3 | Verify response for invalid country abbreviation | api.zippopotam.us/XYZ/110001 | 404 Not Found | | |
| | 4 | Verify response for country with no zip code | api.zippopotam.us/IN/ | 400 Bad Request | | |
| | 5 | Verify response for valid zip code, case insensitivity in country code | api.zippopotam.us/in/110001 | 200 OK, {"post code": "110001", "country": "India", "country abbreviation": "IN", "places": ... } | | |
| | 6 | Verify response with additional parameters (should be ignored) | api.zippopotam.us/IN/110001?param1=test | 200 OK, {"post code": "110001", "country": "India", "country abbreviation": "IN", "places": ... } | | |
| | 7 | |
Sure, here are 15 test cases in table format:
| Test Case No | Test Case Description | Input | Expected Output |
|---|---|---|---|
| 1 | Verify response for valid zip code | api.zippopotam.us/IN/110001 | 200 OK, {"post code": "110001", "country": "India", "country abbreviation": "IN", "places": ... } |
| 2 | Verify response for invalid zip code | api.zippopotam.us/IN/999999 | 404 Not Found |
| 3 | Verify response for invalid country abbreviation | api.zippopotam.us/XYZ/110001 | 404 Not Found |
| 4 | Verify response for country with no zip code | api.zippopotam.us/IN/ | 400 Bad Request |
| 5 | Verify response for valid zip code, case insensitivity in country code | api.zippopotam.us/in/110001 | 200 OK, {"post code": "110001", "country": "India", "country abbreviation": "IN", "places": ... } |
| 6 | Verify response with additional parameters (should be ignored) | api.zippopotam.us/IN/110001?param1=test | 200 OK, {"post code": "110001", "country": "India", "countr |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Crate , Update, Read, Delete | |
| import pytest | |
| # Request | |
| # Faker | |
| # PyTest | |
| import requests | |
| def test_get_req(): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.tta.practice; | |
| import org.openqa.selenium.By; | |
| import org.openqa.selenium.Keys; | |
| import org.openqa.selenium.WebDriver; | |
| import org.openqa.selenium.WebElement; | |
| import org.openqa.selenium.firefox.FirefoxDriver; | |
| import org.openqa.selenium.interactions.Actions; | |
| public class AP01 { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import org.openqa.selenium.By; | |
| import org.openqa.selenium.WebDriver; | |
| import org.openqa.selenium.WebElement; | |
| import org.openqa.selenium.firefox.FirefoxDriver; | |
| import org.testng.annotations.AfterTest; | |
| import org.testng.annotations.BeforeTest; | |
| import org.testng.annotations.Test; | |
| public class WebTablesTest { |