Parasoft Selenic analyzes the use of locators in your Selenium tests and provides recommendations for updating the locator to maintain test stability. After executing the tests and processing the results, you can view the recommendations in the Parasoft report or load them into your IDE.

In this section:

Viewing Recommendations in Eclipse

The Selenic Recommendations view is an interface for improving the maintainability of your Selenium tests. It contains information about element locators used in the tests, as well as actions that you can take to view and update the locators.

Selenic will generate and load recommendations into the IDE after executing a Selenic run configuration. By default, Selenic only generates recommendations for failed element locators, but you can configure the run configuration to generate recommendations for all locators in the Selenic Run Configurations screen.

You can also import recommendations from the report generated by an automated test run. Click the Import Recommendation link and specify the location of the JSON report file.

When the report loads, you can review the locator in the page object file by clicking the Go to Locator icon.

If your test does not follow the page object model, you can click the Go to Method icon to open the test method identified by the locator in the test file.

Manual Updates

  1. Click the View Recommended Locators link in the Selenic Recommendations view to access the recommended locators. Refer to About Locator Recommendations for information about understanding locators.
  2. Choose the locator you want to use and copy it to your clipboard. 

  3. If your test follows the page object model, you can close the overlay and click the Go to Locator icon. If your test does not follow the page object model, click the Go to Method icon to open the test method identified by the locator in the test file.
  4. When the page or test file opens, you can paste the recommended locator into the file to update it. If your test does not follow the page object model, you will need to manually locate the bad locator within the test method in order to make the update. 

Quick-fix Updates

Click the Update Locator link in the Selenic Recommendations view to access the recommended locators. You can choose the best locator for your test and click Update to instantly update the test. Refer to About Locator Recommendations for information about understanding locators. 

You can also copy the locator to your clipboard and paste it into the test manually. 

Viewing the Report

The report will open after running Selenic in the IDE if the Open HTML report after execution option is enabled (see Selenic Run Configurations). If the report fails to launch, you can open it from the <ECLIPSE_WORKSPACE>/.metadata/.plugins/etc directory.

Session Summary

This section includes a timestamp marking the start of the analysis. If any of the tests failed, click the Tests to Fix link to go the Details - Tests to Fix section.

Summary - Tests to Fix

This section provides an overview of the tests that passed and failed, as well as any issues that were addressed if the self-healing option was enabled.

Details - Tests to Fix

This section shows the names of any failed tests and a description of the issues that caused the failure. 

If the screenshots option was enabled during execution, a link to the screenshot associated with the failure will be available.

You can also click on the failed test to open the test details view, which shows the following information:

  • Recommendations for fixing issues
     
  • Stacktrace of test failure
     
  • Console errors (if logged)

About Locator Recommendations

Selenic assigns each locator a confidence factor, weight, and stability. The weight and stability are based on previous test runs. The confidence factor is calculated from the weight and stability and represents how confident Selenic is that a recommended locator should be used. This section provides background information for understanding Selenic locator recommendations. 

Locator Recommendation Types

The Selenic Analyzer can recommend various types of locators to repair or improve existing locators. Each type of locator matches an element based on its text, name, ID, position, class name, or other criteria. Some recommendation types, such as the table locator, which locates a table cell based on adjacent text in a row and column, also combine criteria. The full list of locator recommendation types is described in the "locator_weights.properties" file in the Selenic installation directory. This file provides a description for each type, including examples.

Each locator recommendation type can also have multiple representations depending on the circumstances. For example, Selenic may recommend a locator that finds hyperlinks based on its text. This locator type has multiple representations in Selenium, including link text, partial link text, and XPath. For exact text matches, a link text locator would be recommended. For partial text matches, either a partial link text or an XPath locator would be recommended.

Locator Stability

Stability is an estimate of how well a type of locator recommendation is expected to work in the future given how well it would have worked in previous executions of the test. In order to leverage the test execution history, the tests must have been executed with Selenic.

For example, if a Selenium test has a locator that matches on a hyperlink, and all or part of the link's text has been constant from run to run, then Selenic would produce a link text recommendation with a high stability number. If the hyperlink, however, has also moved around the page from run to run, then a position-based locator recommendation would have very low stability reported.

Locator Confidence and Weight

Each recommendation has a confidence factor that is calculated from the locator's stability and weight. The weight is used to reduce the confidence of certain locator recommendations, even if the stability is high. For example, if an element did not move on the page from run to run, then Selenic may recommend position-based locators. The position-based locators would have a very high stability, but may have a very low confidence because positional locators tend to be more fragile than other types of locators. As a result, position-based locators have a low weight the reduce the overall confidence factor.

Configuring Locator Weights

The weights for each type of locator recommendation are configured in the "locator_weights.properties" file. The value should be between 0 and 1. A value of 1 means that any locator recommendations of that type will have a confidence factor identical to the stability number. A value of 0 is used to prevent locators of a particular type from ever being recommended.

Example weights from the locator_weights.properties file
# Locates an element by its text content.  Builds a "link text" or
# "partial link text" locator for a hyperlink, otherwise builds an "xpath"
# locator.
# examples:
#     link text: click me
#     partial link text: click
#     xpath: descendant::div[normalize-space(.)="The quick brown fox"]
text_locator.link_text=.98
text_locator.partial_link_text=.98
text_locator.xpath=.98


  • No labels