profile pic Selenium
Upvote 0 Downvote
Different Types of Testing and Implementation in Real-Time Scenarios Quality Assurance @ Google Difficulty medium

Describe different types of testing and explain how to implement them in real-time scenarios. Provide examples and tools that can be used.

Solution:

Please sign-in to view the solution

Upvote 0 Downvote
Regression Testing Example Quality Assurance @ Amazon Difficulty medium

You are working as a QA Analyst at Amazon and the company recently added a new feature to the Amazon Pay service that enables cryptocurrency transactions. Explain what regression testing is and how you would design a regression test plan for this new feature to ensure it does not break existing functionalities, particularly focusing on payment processing and account management.

Solution:

Please sign-in to view the solution

Upvote 0 Downvote
Automate a Test Using Python Quality Assurance @ Amazon Difficulty medium

Write a function in any programming language you know to automate a test.

Solution:

Please sign-in to view the solution

Upvote 0 Downvote
Test Cases for Google Search Widgets Quality Assurance @ Google Difficulty medium

Write test cases for widgets that pop out when you perform a Google Search. For example, the calculator widget when searching 'tan x', or the unit converter widget when searching 'convert 60kgs to pounds'. The test cases should cover general scenarios testing this functionality of invoking widgets via the search toolbar.

Requirements:

  • Each test case should verify that the correct widget is rendered based on the search query.
  • You do not need to go into details of individual widget functionalities, but rather ensure that the correct widget appears.

Example:

Test Case 1:

  • Input: 'tan x'
  • Expected Result: Calculator widget should appear.

Test Case 2:

  • Input: 'convert 60kgs to pounds'
  • Expected Result: Unit converter widget should appear.

Provide a few more example test cases to illustrate the point.

Solution:

Please sign-in to view the solution

Upvote 0 Downvote
Selenium Automation Using XPath Quality Assurance @ Amazon Difficulty medium

Provide Selenium automation code to locate the element through XPath and validate a given test case.

Solution:

Please sign-in to view the solution

Upvote 0 Downvote
Testing the Google Search Bar Quality Assurance @ Google Difficulty medium

Describe how you would test the functionality of the Google Search Bar. Consider different scenarios and edge cases that need to be verified.

Solution:

Please sign-in to view the solution

Upvote 0 Downvote
Write a Code to Print All Links from a Web Page Quality Assurance @ IBM Difficulty easy

Write a Python script using Selenium WebDriver to print all the links (<a> tags) from a web page. The script should open the specified web page, find all the links, and then print out the text and the URL for each link.

Solution:

Please sign-in to view the solution

Upvote 0 Downvote
Basics of Automation Testing Quality Assurance @ Oracle Difficulty easy

Explain the fundamentals of automation testing. Discuss the advantages and disadvantages of using automation testing over manual testing. Provide examples of popular automation testing tools and their use cases.

Solution:

Please sign-in to view the solution

Upvote 0 Downvote
Automating Web Form Submission Using Selenium Quality Assurance @ IBM Difficulty medium

You are required to automate the submission of a web form using Selenium WebDriver in Python. The form has the following fields:

  • Text input field with id="username"
  • Password input field with id="password"
  • Submit button with id="submit"

Write a Python script using Selenium to fill out the form and submit it, handling potential delays in the page load using WebDriverWait.

Solution:

Please sign-in to view the solution

Upvote 0 Downvote
Handling Pop-ups in Selenium Quality Assurance @ IBM Difficulty medium

Write a code snippet in Python to handle pop-up windows using Selenium WebDriver. The code should demonstrate how to switch to the pop-up, perform an action such as accepting or dismissing it, and then switch back to the main window.

Solution:

Please sign-in to view the solution

Upvote 0 Downvote
Performance Testing, Testing Tools, and Experience in Automation Quality Assurance @ IBM Difficulty medium

Discuss the importance of performance testing, tools commonly used for performance testing, and your experience in automation testing.

Solution:

Please sign-in to view the solution