Full Stack QE https://fullstackqe.org Just another WordPress site Sat, 28 Jan 2023 08:32:36 +0000 en-US hourly 1 https://wordpress.org/?v=6.1.6 155680629 API Contract Testing with example using Postman https://fullstackqe.org/api-contract-testing-with-example-using-postman/ Sat, 28 Jan 2023 08:31:40 +0000 https://fullstackqe.org/?p=832 Continue reading "API Contract Testing with example using Postman"

]]>
Contract testing for API is about making sure that the API behaves according to the contract that has been agreed upon, and it can be done using different tools and frameworks.

Here’s an example of contract testing using Postman:

# Import the collection from a file
pm.test("status code is 200", function () {
    pm.response.to.have.status(200);
});
pm.test("response should be a JSON", function () {
    pm.response.to.have.header("Content-Type", "application/json");
});
pm.test("response should be not be empty", function () {
    pm.expect(pm.response.json().data).to.not.be.empty;
});

This code is a test script written in JavaScript, it check if response status is 200, if the response type is JSON and if the JSON response data is not empty. The test will fail if the API does not adhere to the contract, and the developers can use the failure message to identify and fix the issue.

Click here to learn about API Contract Testing with example using Pact framework in Python

]]>
832
20 Most asked API testing interview questions https://fullstackqe.org/20-most-asked-api-testing-interview-questions/ Mon, 26 Dec 2022 13:42:46 +0000 https://fullstackqe.org/?p=828 Here are 20 Most asked API testing interview questions:

  1. What is API testing and why is it important?
  2. What are the common HTTP methods used in API testing?
  3. How do you test the authentication and authorization of an API?
  4. How do you test the performance of an API?
  5. How do you handle API testing in an Agile development environment?
  6. How do you test error handling in an API?
  7. What are the common tools used for API testing?
  8. How do you test the security of an API?
  9. How do you test the reliability of an API?
  10. How do you test for compatibility in an API?
  11. What are some common challenges in API testing?
  12. How do you test for data integrity in an API?
  13. How do you test for compliance in an API?
  14. How do you test for backward compatibility in an API?
  15. How do you test for documentation in an API?
  16. How do you test for maintainability in an API?
  17. How do you test for scalability in an API?
  18. How do you test for usability in an API?
  19. How do you test for accessibility in an API?
  20. How do you test for internationalization in an API?
]]>
828
Skills needed to make a transition from Software Test Lead to Testing Manager https://fullstackqe.org/skills-needed-to-make-a-transition-from-software-test-lead-to-testing-manager/ Thu, 08 Dec 2022 09:30:03 +0000 https://fullstackqe.org/?p=825 Continue reading "Skills needed to make a transition from Software Test Lead to Testing Manager"

]]>
To make a successful transition from a Software Test Lead to a Testing Manager, you will need a combination of technical, leadership, and project management skills. Some key skills that are important for a Testing Manager include:

  • Extensive knowledge and experience with software testing processes and methodologies
  • The ability to develop and manage a team of software testers
  • Strong agile project management skills, including the ability to create and manage budgets and schedules
  • Excellent communication and interpersonal skills, including the ability to communicate complex technical concepts to non-technical stakeholders
  • The ability to identify and mitigate project risks
  • The ability to foster collaboration and teamwork among team members
  • Strong problem-solving and critical thinking skills

In addition to these technical skills, it’s also important for a Testing Manager to have strong leadership skills, such as the ability to motivate and mentor team members, provide constructive feedback, and foster a positive and productive work environment.

]]>
825
How to invoke Edge browser in selenium? https://fullstackqe.org/how-to-invoke-edge-browser-in-selenium/ Mon, 05 Dec 2022 19:10:12 +0000 https://fullstackqe.org/?p=821 Continue reading "How to invoke Edge browser in selenium?"

]]>
To invoke the Microsoft Edge browser in Selenium, you need to use the EdgeDriver class. Here’s an example of how you can do this:

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.edge.EdgeDriver;

public class EdgeTest {
  public static void main(String[] args) {
    // Set the path to the Microsoft Edge driver
    System.setProperty("webdriver.edge.driver", "path/to/MicrosoftWebDriver.exe");

    // Create a new instance of the Edge driver
    WebDriver driver = new EdgeDriver();

    // Open a new browser window and navigate to a website
    driver.get("http://www.example.com");
  }
}

Note that you need to download and install the Microsoft WebDriver server in order to use the EdgeDriver class. You can find the download link and instructions on how to install the WebDriver server on the Selenium website.

]]>
821
Benefits of API Test Automation over UI Test Automation? – Mostly asked Interview Question https://fullstackqe.org/benefits-of-api-test-automation-over-ui-test-automation-mostly-asked-interview-question/ Sat, 12 Nov 2022 19:52:48 +0000 https://fullstackqe.org/?p=815 API testing has many benefits over UI testing:

  • First, API testing is much faster than UI testing. This is because API tests do not have to wait for a page to load, as they interact directly with the application’s backend.
  • Second, API tests are more reliable than UI tests. This is because UI tests are subject to the vagaries of the user interface, such as changes in the layout or position of elements. API tests, on the other hand, are not affected by such changes.
  • Third, API tests are easier to create and maintain than UI tests. This is because UI tests often require a lot of code to simulate user interactions, whereas API tests only need to make calls to the application’s API.
  • Fourth, with API testing, one can find bugs related to functionality, reliability, performance, and security early in the SDLC and hence those are cheaper to fix.

In conclusion, API testing has many advantages over UI testing, and should be used whenever possible.

]]>
815
Thoughts and Ideas on Future of Software Testing. https://fullstackqe.org/thoughts-and-ideas-on-future-of-software-testing/ Sun, 30 Oct 2022 19:21:17 +0000 https://fullstackqe.org/?p=812 Continue reading "Thoughts and Ideas on Future of Software Testing."

]]>
The future of software testing is likely to be more automated and focused on artificial intelligence (AI) and machine learning. This is due to the increasing complexity of software systems and the need for faster and more accurate testing.

AI and machine learning can help to automate the testing process by generating test cases and test data. They can also help to identify errors and potential areas of improvement. In addition, AI and machine learning can be used to create virtual environments for testing, which can be more realistic and representative of the real world.

As the use of AI and machine learning in testing becomes more widespread, it is likely that the role of human testers will change. They will become more focused on overseeing the automated testing process and interpreting the results.

The future of software testing is likely to be more efficient and effective as a result of the increasing use of AI and machine learning. This will benefit both developers and users by reducing the time and cost of testing, and by improving the quality of software products.

]]>
812
Key Skills of a Software Tester (Part 1) https://fullstackqe.org/key-skills-of-a-software-tester-part-1/ Thu, 27 Oct 2022 13:00:59 +0000 https://fullstackqe.org/?p=810 Continue reading "Key Skills of a Software Tester (Part 1)"

]]>
Some of the key skills of a software tester include:

-Analytical skills: The ability to think logically and critically in order to identify issues and problems.

-Attention to detail: The ability to spot errors and inconsistencies.

-Creativity: The ability to come up with new and innovative ways to test software.

-Patience: The ability to persevere in the face of challenging tasks.

-Communication: The ability to communicate effectively with both technical and non-technical staff.

]]>
810
9 Soft skills needed to fast-track your career https://fullstackqe.org/9-soft-skills-needed-to-fast-track-your-career/ Wed, 26 Oct 2022 17:18:12 +0000 https://fullstackqe.org/?p=806 Along with the technical skills, soft skills are equally important to grow up in the career.

Below are the most important soft skills that can help fast-track your career:

1. Time management

2. Communication

3. Organization of your work

4. Teamwork

5. Problem solving

6. Critical thinking

7. Interpersonal skills

8. Flexibility

9. Stress management

]]>
806
TestFlix 2022 (virtual conference) – Attend for Free!! https://fullstackqe.org/testflix-2022-virtual-conference-attend-for-free/ Thu, 06 Oct 2022 07:33:10 +0000 https://fullstackqe.org/?p=802 Continue reading "TestFlix 2022 (virtual conference) – Attend for Free!!"

]]>
TestFlix 2022 (virtual conference) is happening on October 8th & 9th 2022.In this virtual conference Testers from top companies (across the globe)  share their knowledge through Atomic Talks.

Atomic talks by definition are meant to be small, yet Powerful and that’s the whole idea this time, it has 60+ Global Speakers & 14 Themes

Topics: Automation, Testing, AI ML, Web 3.0, Performance, Leadership/Management, API & lot more

Recording Access: Practical demonstration based teaching, clear ‘how-tos’ (only to those who registered)I highly recommend you guys to register for this conference and attend the sessions which are relevant to you. 

Grab your free pass here: https://bit.ly/3qmuVZU

]]>
802
Practical Tips to Speed up the Software Delivery Performance https://fullstackqe.org/practical-tips-to-speed-up-the-software-delivery-performance/ Wed, 05 Oct 2022 19:22:48 +0000 https://fullstackqe.org/?p=790 Continue reading "Practical Tips to Speed up the Software Delivery Performance"

]]>
This post will give you enough ideas to improve software delivery performance (and Automation Plays a key role here) and how to measure software delivery performance using statistical methods. I would like to share industry proven and practical tips which helps you speed up the Software Delivery Performance.

Accelerate classified the capabilities into 4 categories:

Technology & Automation capabilities:

Product and Process Capabilities:

Lean Management and Monitoring Capabilities:

Cultural Capabilities:

In next couple of articles, we will go over these capabilities one by one.

]]>
790