You need to implement this process with the least amount of effort. What should you do?

November 19, 2021 by Admin

You are developing applications for a company. You plan to host the applications on Azure App Services.

The company has the following requirements:

-Every five minutes verify that the websites are responsive.
-Verify that the websites respond within a specified time threshold. Dependent requests such as images and JavaScript files must load properly.
-Generate alerts if a website is experiencing issues.
-If a website fails to load, the system must attempt to reload the site three more times.

You need to implement this process with the least amount of effort.

What should you do?

  • Create a Selenium web test and configure it to run from your workstation as a scheduled task.
  • Set up a URL ping test to query the home page.
  • Create an Azure function to query the home page.
  • Create a multi-step web test to query the home page.
  • Create a Custom Track Availability Test to query the home page.
Explanation:

You can monitor a recorded sequence of URLs and interactions with a website via multi-step web tests.

Incorrect Answers:
A: Selenium is an umbrella project for a range of tools and libraries that enable and support the automation of web browsers.

It provides extensions to emulate user interaction with browsers, a distribution server for scaling browser allocation, and the infrastructure for implementations of the W3C WebDriver specification that lets you write interchangeable code for all major web browsers.

Leave a Reply