FluentLenium/FluentLenium

View on GitHub
fluentlenium-core/src/main/java/io/fluentlenium/core/FluentDriver.java

Summary

Maintainability
C
1 day
Test Coverage

FluentDriver has 39 methods (exceeds 20 allowed). Consider refactoring.
Open

@SuppressWarnings("PMD.GodClass")
public class FluentDriver extends AbstractFluentDriverSearchControl { // NOPMD GodClass

    private static final Logger LOGGER =
            LoggerFactory.getLogger(FluentDriver.class);

    File FluentDriver.java has 293 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    package io.fluentlenium.core;
    
    import io.appium.java_client.AppiumDriver;
    import io.fluentlenium.configuration.Configuration;
    import io.fluentlenium.core.action.KeyboardActions;

      Method switchTo has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
      Open

          @Override
          public void switchTo(FluentWebElement element) {
              if (null == element || !"iframe".equals(element.tagName())) {
                  getDriver().switchTo().defaultContent();
              } else {
      Severity: Minor
      Found in fluentlenium-core/src/main/java/io/fluentlenium/core/FluentDriver.java - About 25 mins to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Name 'io.fluentlenium.core' must match pattern '^org.[a-z]+(.[a-zA-Z_][a-zA-Z0-9_]*)*$'.
      Open

      package io.fluentlenium.core;

      Checks that package names conform to a specified pattern.

      The default value of format for module PackageName has beenchosen to match the requirements in the JavaLanguage specification and the Sun coding conventions. Howeverboth underscores and uppercase letters are rather uncommon, so mostconfigurations should probably assign value ^[a-z]+(\.[a-z][a-z0-9]*)*$ toformat for module PackageName.

      This documentation is written and maintained by the Checkstyle community and is covered under the same license as the Checkstyle project.

      There are no issues that match your filters.

      Category
      Status