Software Life Cycle Models

Nội dung bài viết 1. Waterfall Model2. V-model3. Spiral Model                      SOFTWARE LIFE CYCLE MODELS1. Waterfall ModelWaterfall Model is the oldest SDLC ModeIt resembles how the water fall flows from up side to down sideIt will proceed Phase by Phase All the requirements should be ready to proceed to other next phasesTesting team is not...

Software Testing

Nội dung bài viết 1. What is software?2. What is Software Testing?3. Why do we need testing?4. Error, Bug & Failure  Software Testing1. What is software?A Software is a collection of computer programs that helps us to perform a task.Types of Software:• System software Ex: Device drivers, Operating Systems, Servers, Utilities, etc.• Programming software Ex: compilers, debuggers, interpreters, etc.• Application software Ex:...

Switch tabs in Selenium

                                 Switch tabs in SeleniumWe have to get all the set of tabs present in the browser.When switching you might need to wait for 5 to 10 seconds for the types of browser windows to get generated.2 Tabs:You can switch between the tabs usingdriver.switchTo().window("handle")String parentID = driver.getWindowHandle(); ArrayList<String>...

CSV Files in Selenium

Nội dung bài viết I. Concept CSV fileII. Dependency CSV IntegrationIII. Reading a CSV file by Column IndexIV. Reading a CSV file with Column Name CSV Files with seleniumI. Concept CSV fileIt is a common format for data interchange as it is simple, compact, and used everywhere. It will open into Excel with a double click, and nearly all databases have a tool to allow import from CSVIt is a common format for data interchange as it...

Basic Form

XPath Tip and Trick Hello World! (Ignore Me) @04:45 PM I'm a Hacker - 18 years old - living in Viet Nam - 15/03/2020 Michael Jackson Michael Jackson Michael Jackson Michael Jackson Michael Jackson Michael Jackson Michael Jackson Michael Jackson Mail Personal or Business Check, Cashier's Check or money order to: NOP SOLUTIONS your address here, New York, NY 10001  ...

Test Scenarios for Image Upload Functionality

 Test Scenarios for Image Upload Functionality1. Check for the uploaded image path.2. Check image upload and change functionality.3. Check image upload functionality with image files of different extensions (For Example, JPEG, PNG, BMP, etc.)4. Check image upload functionality with images that have space or any other allowed special character in the file name.5. Check for duplicate name image upload.6. Check the image upload with an image size...

Test Cases for Error Message

Nội dung bài viết Test Cases for Error Message Test Cases for Error Message1. Check the spelling of the error message is correct or not.2. Verify the grammar for the error messages is correct.3. Verify error message for empty field will be displayed.4. Verify the error message uploading an empty file is displayed.5. Verify an error message will be displayed for files that are not supported by the system.6. Verify message when confirming...

Explict Wait in Selenium

Nội dung bài viết  I. Explicit Wait in seleniumII. alertIsPresent()III. elementToBeClickable()Ex:IV. elementToBeSelected()Ex:V. textToBePresentInElement()  I. Explicit Wait in seleniumExplicitWait does not have any effect on findElement and findElements. ExplicitWait also called WebdriverWait.WebDriverWait by default calls the ExpectedCondition every 500 milliseconds until it returns successfully.Syntax : WebDriverWait...