Posts

Showing posts from March, 2021

How to learn selenium automation

Testing is a way to verify the working of an application by testing it against the expected outcome. Software testing is done in two ways- Manual and automated. Although Manual testing has been reliable for the longest time it is also tiring and monotonous. To overcome this problem maximum companies have shifted to automation testing. It is necessary to learn selenium  as it helps in automating test cases repeatedly in less time and more reliable as well.  What is Selenium? Whenever automated testing is talked about, Selenium is the most common name that comes to mind. It is one of the automation tools used for web applications. Let us dive into the article to know- ‘how to learn selenium automation?’ Selenium is an automation tool to automate web applications. Selenium is an open-source platform that makes it readily available to everyone. Selenium is a suite that contains multiple tools to assist with different automation. These are  Selenium Integrated Development Envi...

Top 5 manual testing interview questions

 Prepare for interview with our list of top 5  manual testing interview questions with answers  that you can use to boost your confidence before sitting down for any interview. Q1.What is manual software testing, and how it is different from automated software testing?  Ans.Manual testing is a process where human testers manually run test cases, then generate resulting test reports. With automation software testing, these functions are executed by automation testing tools such as test scripts and code. The tester takes the end user’s role to determine how well the app works. Q2. Why is Software Testing Required? Ans. Software testing is a process that guarantees that the product is safe and good enough to be released to the market.  We need software testing for the following reasons-:  It points out the defects and errors that were made during the development phases.  Avoidable defects leaked to the customer without proper testing adds a bad reputation...

Top 5 Resources to Learn Selenium

Over the past few years, Selenium has gained a lot of popularity. When it comes to automation, Selenium is the most popular automation tool .Web developers can use that to test their applications. In this article, we have talked about the Top 5 Resources To Learn Selenium. Selenium WebDriver Training with Java Basics ( udemy course )  Automation testing is in huge in the testing industry. It makes tasks easier. . This course is self-paced course available for life-time. It come with 150 hours of online lecture videos, live projects, a certificate of completion, and 60+ downloadable resources. It is well suited for people that are searching for Java-based automation course. The course is not expensive but with the inclusion of topics from beginner level to the advance level, the course is worth the money. The course starts from scratch therefore keep your worries aside and start learning. Software Testing Help ( Youtube Channel )  This is one of the most popular sites and YouTu...

Sample Test Cases for Pen

  It is often asked in interviewers to write the sample test cases for the pen  . It becomes quite harder to write them unless we break the test cases down into multiple categories like – , specification, negative tests, usability tests and  performance  etc. So in this article, I’m sharing some of the sample test cases, both positive and negative, for the pen.  Going through these test cases will  help you in understanding the process of making test case which you can use while creating test cases of any kind of application. Performance Test Scenarios of pen  Verify if tip or nib of the pen is not destroyed after continuous working for hours. Verify how fast you can write with this pen. Verify ‘How much can be written in one refill?’ Verify if the pen will perform the same even though you use continuously for hours. Negative Test Cases for Pen Check pen stress testing by dropping pen down from practical height and verify if something is breaking. Kee...

Software Automation Testing Basics | All You Need To Know About Automation Testing

 Undertakings across businesses keep on requesting quicker deliveries and quality programming to withstand the steadily changing business sector situation and rivalry.  With undertakings following DevOps and nimble techniques of programming advancement, programming testing structures a vital piece of it. The previous manual strategy for testing doesn't get the job done the present-day associated gadgets and confounded engineering applications with industry 4.0 set up.  what is automation testing? As per WIKI, automation testing is the utilization of programming separate from the product being tried to control the execution of tests and the correlation of real results with anticipated results.  Test automation can robotize some redundant however vital errands in a formalized testing measure effectively set up, or play out extra testing that may be hard to do physically.  What does Test Automation Do? Test computerization is basic for persistent conveyance (CD) a...

how to write test cases for a Login page

Image
  Verify that as soon as the login page opens, by default the cursor should remain on the username textbox. Verify that the user is able to navigate or access the different controls by pressing the ‘Tab’ key on the keyboard. Verify that the password is in masked form when entered. Verify if the password can be copy-pasted or not. Verify that the user is able to login by entering valid credentials and clicking on the ‘Login’ button. Verify that the user is able to login by entering valid credentials and pressing Enter key. Verify that the user is not able to login with an invalid username and password. Verify that the validation message gets displayed in case the user leaves the username or password field as blank. Verify that the validation message is displayed in the case the user exceeds the character limit of the user name and password fields. Reference: Test Case of Login page