Q61
Q61 What is a key challenge when implementing Automation Testing?
Lack of test tools
High maintenance costs
Easier defect tracking
Reduced accuracy
Q62
Q62 How do you find an element by its ID in Selenium WebDriver?
driver.findElementByID("id")
driver.getElement("id")
driver.findElement(By.id("id"))
driver.find("id")
Q63
Q63 In Selenium WebDriver, which method is used to click a button?
button.click();
button.press();
button.submit();
button.tap();
Q64
Q64 How do you switch to an alert box in Selenium WebDriver?
driver.switchTo().alert()
driver.switchTo().popup()
driver.alert().switch()
driver.findAlert()
Q65
Q65 How do you handle multiple windows in Selenium WebDriver?
driver.getWindowHandles();
driver.switchWindow()
driver.changeWindow();
driver.windowHandles();
Q66
Q66 An automation script fails due to a missing element. What is the most likely cause?
Incorrect element locator
Script timeout
Test data issue
Network connection
Q67
Q67 A Selenium script fails on certain browsers but works on others. What is a possible reason?
Browser-specific compatibility issue
Selenium is not installed
Incorrect element locator
Script has syntax errors
Q68
Q68 An automated test suite is taking too long to execute. What could help optimize its performance?
Adding more test cases
Increasing test data
Minimizing wait times and using efficient locators
Decreasing system resources
Q69
Q69 What is the purpose of Equivalence Partitioning in Test Case Design?
To divide input data into equivalent partitions
To create only positive test cases
To ignore boundary values
To execute tests manually
Q70
Q70 Which technique focuses on testing boundaries of input ranges?
Equivalence Partitioning
Boundary Value Analysis
Decision Table Testing
State Transition Testing
Q71
Q71 What is the purpose of Decision Table Testing?
To test boundaries
To document the flow of the system
To test different input combinations
To ensure all classes are tested
Q72
Q72 Which technique is useful for testing system behavior in response to different events or states?
Equivalence Partitioning
Decision Table Testing
State Transition Testing
Boundary Value Analysis
Q73
Q73 When is Cause-Effect Graphing most useful in Test Case Design?
For testing the UI
When input combinations are simple
For testing complex logic with multiple inputs and outcomes
For performance testing
Q74
Q74 How would you identify test cases for Boundary Value Analysis?
By testing only valid inputs
By focusing on input boundaries
By using the decision table
By writing manual tests only
Q75
Q75 In a system accepting ages from 18 to 60, which of the following would be a valid Boundary Value Analysis test case?
17, 18, 59, 60
19, 20, 50
15, 30, 45
All values above 60
Q76
Q76 How would you design a test case for Equivalence Partitioning for a login system that accepts a 4-6 digit PIN?
Test only with 4 and 6 digits
Test with 3, 5, and 7 digits
Group inputs as 4-6 digits and others outside
Test with only one number
Q77
Q77 How would you use Decision Table Testing for a system with three inputs where each input can be "Yes" or "No"?
Create one test case per input
Create a table with 8 combinations
Create a table with 4 rows
Create only two test cases
Q78
Q78 A test case designed using Equivalence Partitioning fails. What could be a likely reason?
Incorrect partition
Wrong Boundary Value
Insufficient data
Correct partition
Q79
Q79 While testing a calculator app, the tests fail for boundary values. What could be a possible cause?
Test case errors
App is not optimized
Boundary cases not handled in code
Invalid test data
Q80
Q80 A Decision Table-based test fails unexpectedly. What is a likely reason for this?
Incorrect decision table
Correct test data
Properly defined inputs
Only one output option
Q81
Q81 What is the primary purpose of Test Management Tools like JIRA and TestRail?
To manage software releases
To track and manage testing activities
To build automation scripts
To design application UI
Q82
Q82 In JIRA, what does a "story" represent?
A test case
A feature or requirement
A bug
A code repository
Q83
Q83 What is the purpose of a "dashboard" in Test Management Tools?
To create test scripts
To display real-time updates on project status
To generate code
To compile test cases
Q84
Q84 In TestRail, what does a "test suite" contain?
A list of user stories
A collection of test cases
A set of automation scripts
A list of bugs
Q85
Q85 Which of the following is a key feature of JIRA for tracking software defects?
Requirement mapping
Bug tracking with customizable workflows
Test case creation
Automated testing integration
Q86
Q86 How do you link a test case to a user story in JIRA?
Using "TestRail link"
With "Story Test"
Using "Issue link"
By "Code Sync"
Q87
Q87 In TestRail, how do you mark a test case as failed?
Click on "Pass"
Select "Block"
Select "Fail" status
Unlink the test case
Q88
Q88 How would you create a custom report in TestRail to show test results by milestone?
Use default reporting
Modify the test suite
Create a custom report in the Reports section
Use a story filter
Q89
Q89 A test case status is not updating in JIRA. What should you check first?
Verify permissions
Restart the software
Update the workflow
Reassign the task
Q90
Q90 In TestRail, you find that test cases are missing after importing a test suite. What could be the reason?
Test suite limit exceeded
Permissions issue
Incorrect import format
Suite was deleted