Welcome to WRS SQA test!
This test has 12 different kinds of questions that consist of Python programming, Selenium testing and REST APIs. Expected solving time of 1h 37min, with maximum solving time of 2h 25min (normal timing policy).
Once the test begin, you have to end it.
Best of lucks!
0 of 7 Questions completed
Questions:
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading…
You must sign in or sign up to start the quiz.
You must first complete the following:
0 of 7 Questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 point(s), (0)
Earned Point(s): 0 of 0, (0)
0 Essay(s) Pending (Possible Point(s): 0)
Average score |
|
Your score |
|
A company has just installed a new bug tracking system that should improve the process of reporting and fixing bugs.
What would you propose to support the efficiency of the bug fixing process?
(Select all acceptable answers.)
Which of the following is true for unit testing?
(Select all acceptable answers.)
Select all the things you can do with Selenium.
(Select all acceptable answers.)
A page contains a search box where search results are retrieved using AJAX. An integration test using Selenium tests a scenario in which a user enters a keyword into the search box and clicks the “Search” button.
You need to add code after the click on the “Search” button which should check if, after results are retrieved, the page contains an element with id results. If more than 3 seconds have passed between clicking the search button and displaying the message, the test should fail.
Select steps that together form the best practice for simulating that user scenario in Selenium:
(Select all acceptable answers.)
Select the statements about HTTP Cookies that are correct.
(Select all acceptable answers.)
Implement the find_all_hobbyists function that takes a hobby, and an object consisting of peoples names mapped to their respective hobbies. The function should return a List containing the names of the people (in any order) that enjoy the hobby.
For example, the following code should display the name ‘Chad’.
This response will be awarded full points automatically, but it can be reviewed and adjusted after submission.
Implement the validate function, which accepts a username and returns true if it’s acceptable and false if it’s not.
A username is valid if it satisfies the following rules:
For example, validate(“Mike Standish”); would return false because it contains a space.
This response will be awarded full points automatically, but it can be reviewed and adjusted after submission.