FluentLenium/FluentLenium

View on GitHub

Showing 1,951 of 1,951 total issues

ListImpl has 24 methods (exceeds 20 allowed). Consider refactoring.
Open

public abstract class ListImpl<T> implements List<T> {

    public ListImpl() {
        super();
    }

    AbstractComponentInstantiator has 24 methods (exceeds 20 allowed). Consider refactoring.
    Open

    public abstract class AbstractComponentInstantiator implements ComponentInstantiator {
    
        @Override
        public FluentWebElement newFluent(WebElement element) {
            return newComponent(FluentWebElement.class, element);

      Identical blocks of code found in 2 locations. Consider refactoring.
      Open

          @Before
          public void before() {
              wait = new FluentWait(fluent);
              wait.atMost(10L, TimeUnit.MILLISECONDS);
              wait.pollingEvery(1L, TimeUnit.MILLISECONDS);
      fluentlenium-core/src/test/java/io/fluentlenium/core/wait/FluentWaitEachElementMatcherTest.java on lines 59..78

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 167.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Identical blocks of code found in 2 locations. Consider refactoring.
      Open

          @Before
          public void before() {
              wait = new FluentWait(fluent);
              wait.atMost(10L, TimeUnit.MILLISECONDS);
              wait.pollingEvery(1L, TimeUnit.MILLISECONDS);
      fluentlenium-core/src/test/java/io/fluentlenium/core/wait/FluentWaitElementListMatcherTest.java on lines 59..78

      Duplicated Code

      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

      Tuning

      This issue has a mass of 167.

      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

      Refactorings

      Further Reading

      Method testProperties has 65 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          @Test
          public void testProperties() {
              when(element1.value()).thenReturn("1");
              when(element2.value()).thenReturn("2");
              when(element3.value()).thenReturn("3");

        Similar blocks of code found in 3 locations. Consider refactoring.
        Open

            @Test
            public void hasText() {
                FluentListConditions matcher = wait.until(fluentWebElements);
                assertThatThrownBy(() -> matcher.text().equalTo("text")).isExactlyInstanceOf(TimeoutException.class);
        
        
        fluentlenium-core/src/test/java/io/fluentlenium/core/wait/FluentWaitEachElementMatcherTest.java on lines 235..254
        fluentlenium-core/src/test/java/io/fluentlenium/core/wait/FluentWaitElementListMatcherTest.java on lines 242..261

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 163.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Similar blocks of code found in 3 locations. Consider refactoring.
        Open

            @Test
            public void containsText() {
                FluentListConditions matcher = wait.untilEach(fluentWebElements);
                assertThatThrownBy(() -> matcher.text().contains("ex")).isExactlyInstanceOf(TimeoutException.class);
        
        
        fluentlenium-core/src/test/java/io/fluentlenium/core/wait/FluentWaitElementListMatcherTest.java on lines 221..240
        fluentlenium-core/src/test/java/io/fluentlenium/core/wait/FluentWaitElementListMatcherTest.java on lines 242..261

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 163.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        Similar blocks of code found in 3 locations. Consider refactoring.
        Open

            @Test
            public void containsText() {
                FluentListConditions matcher = wait.until(fluentWebElements);
                assertThatThrownBy(() -> matcher.text().contains("ex")).isExactlyInstanceOf(TimeoutException.class);
        
        
        fluentlenium-core/src/test/java/io/fluentlenium/core/wait/FluentWaitEachElementMatcherTest.java on lines 235..254
        fluentlenium-core/src/test/java/io/fluentlenium/core/wait/FluentWaitElementListMatcherTest.java on lines 221..240

        Duplicated Code

        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

        Tuning

        This issue has a mass of 163.

        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

        Refactorings

        Further Reading

        File FluentTestTest.java has 271 lines of code (exceeds 250 allowed). Consider refactoring.
        Open

        package io.fluentlenium.adapter.junit.jupiter.integration;
        
        import io.fluentlenium.adapter.junit.jupiter.FluentTest;
        import io.fluentlenium.adapter.junit.jupiter.MockitoExtension;
        import io.fluentlenium.adapter.sharedwebdriver.SharedWebDriverContainer;

          FluentConditions has 23 methods (exceeds 20 allowed). Consider refactoring.
          Open

          public interface FluentConditions extends Conditions<FluentWebElement> {
              /**
               * Negates this condition object.
               *
               * @return a new negated condition object

            EachElementConditionsTest has 23 methods (exceeds 20 allowed). Consider refactoring.
            Open

            public class EachElementConditionsTest extends AbstractFluentListConditionsTest {
                private EachElementConditions conditions;
            
                @Before
                @Override

              AbstractFluentListConditions has 23 methods (exceeds 20 allowed). Consider refactoring.
              Open

              @SuppressWarnings("PMD.ExcessivePublicCount")
              public abstract class AbstractFluentListConditions implements FluentListConditions, ListConditionsElements {
                  private final List<? extends FluentWebElement> elements;
                  private boolean negation;
              
              

                HtmlUnitPerformanceTimingMetrics has 23 methods (exceeds 20 allowed). Consider refactoring.
                Open

                public class HtmlUnitPerformanceTimingMetrics implements PerformanceTimingMetrics<HtmlUnitPerformanceTimingMetrics> {
                
                    private final PerformanceTiming timing;
                    private final TimeUnit targetTimeUnit;
                    private final long navigationStart;

                  Similar blocks of code found in 4 locations. Consider refactoring.
                  Open

                      @Test
                      public void hasId() {
                          FluentListConditions matcher = wait.until(fluentWebElements);
                          assertThatThrownBy(() -> matcher.id("value")).isExactlyInstanceOf(TimeoutException.class);
                  
                  
                  fluentlenium-core/src/test/java/io/fluentlenium/core/wait/FluentWaitEachElementMatcherTest.java on lines 176..195
                  fluentlenium-core/src/test/java/io/fluentlenium/core/wait/FluentWaitEachElementMatcherTest.java on lines 197..216
                  fluentlenium-core/src/test/java/io/fluentlenium/core/wait/FluentWaitElementListMatcherTest.java on lines 200..219

                  Duplicated Code

                  Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                  Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                  When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                  Tuning

                  This issue has a mass of 157.

                  We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                  The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                  If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                  See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                  Refactorings

                  Further Reading

                  Similar blocks of code found in 4 locations. Consider refactoring.
                  Open

                      @Test
                      public void hasName() {
                          FluentListConditions matcher = wait.until(fluentWebElements);
                          assertThatThrownBy(() -> matcher.name("name")).isExactlyInstanceOf(TimeoutException.class);
                  
                  
                  fluentlenium-core/src/test/java/io/fluentlenium/core/wait/FluentWaitEachElementMatcherTest.java on lines 176..195
                  fluentlenium-core/src/test/java/io/fluentlenium/core/wait/FluentWaitEachElementMatcherTest.java on lines 197..216
                  fluentlenium-core/src/test/java/io/fluentlenium/core/wait/FluentWaitElementListMatcherTest.java on lines 179..198

                  Duplicated Code

                  Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                  Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                  When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                  Tuning

                  This issue has a mass of 157.

                  We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                  The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                  If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                  See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                  Refactorings

                  Further Reading

                  Similar blocks of code found in 4 locations. Consider refactoring.
                  Open

                      @Test
                      public void hasId() {
                          FluentListConditions matcher = wait.untilEach(fluentWebElements);
                          assertThatThrownBy(() -> matcher.id("value")).isExactlyInstanceOf(TimeoutException.class);
                  
                  
                  fluentlenium-core/src/test/java/io/fluentlenium/core/wait/FluentWaitEachElementMatcherTest.java on lines 197..216
                  fluentlenium-core/src/test/java/io/fluentlenium/core/wait/FluentWaitElementListMatcherTest.java on lines 179..198
                  fluentlenium-core/src/test/java/io/fluentlenium/core/wait/FluentWaitElementListMatcherTest.java on lines 200..219

                  Duplicated Code

                  Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                  Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                  When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                  Tuning

                  This issue has a mass of 157.

                  We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                  The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                  If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                  See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                  Refactorings

                  Further Reading

                  Similar blocks of code found in 4 locations. Consider refactoring.
                  Open

                      @Test
                      public void hasName() {
                          FluentListConditions matcher = wait.untilEach(fluentWebElements);
                          assertThatThrownBy(() -> matcher.name("name")).isExactlyInstanceOf(TimeoutException.class);
                  
                  
                  fluentlenium-core/src/test/java/io/fluentlenium/core/wait/FluentWaitEachElementMatcherTest.java on lines 176..195
                  fluentlenium-core/src/test/java/io/fluentlenium/core/wait/FluentWaitElementListMatcherTest.java on lines 179..198
                  fluentlenium-core/src/test/java/io/fluentlenium/core/wait/FluentWaitElementListMatcherTest.java on lines 200..219

                  Duplicated Code

                  Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                  Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                  When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                  Tuning

                  This issue has a mass of 157.

                  We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                  The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                  If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                  See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                  Refactorings

                  Further Reading

                  Method write has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
                  Open

                      @Override
                      public FluentList<E> write(String... with) {
                          validateListIsNotEmpty();
                  
                          boolean atLeastOne = false;

                  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

                  ConfigurationDefaults has 22 methods (exceeds 20 allowed). Consider refactoring.
                  Open

                  public class ConfigurationDefaults extends BaseConfiguration implements ConfigurationProperties {
                      @Override
                      protected ConfigurationProperties getGlobalConfiguration() { // NOPMD UselessOverridingMethod
                          // This class can be extended by end-user, so it has to be protected.
                          return super.getGlobalConfiguration();

                    FluentElementInjectionSupportValidatorTest has 22 methods (exceeds 20 allowed). Consider refactoring.
                    Open

                    @RunWith(MockitoJUnitRunner.class)
                    public class FluentElementInjectionSupportValidatorTest {
                    
                        @Mock
                        private ComponentsManager componentsManager;
                      Severity
                      Category
                      Status
                      Source
                      Language