Skip to content
Advertisement

Cannot invoke “org.openqa.selenium.WebElement.click()” because “this.hotelsLink” is null Maven

I try to do some tests using Selenium, but I can’t test what I do

HomePage.java

JavaScript

Hooks.java

JavaScript

Error:

SLF4J: Failed to load class “org.slf4j.impl.StaticLoggerBinder”. SLF4J: Defaulting to no-operation (NOP) logger implementation SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details. Starting ChromeDriver 101.0.4951.41 (93c720db8323b3ec10d056025ab95c23a31997c9-refs/branch-heads/4951@{#904}) on port 38072 Only local connections are allowed. Please see https://chromedriver.chromium.org/security-considerations for suggestions on keeping ChromeDriver safe. ChromeDriver was started successfully. Apr 27, 2022 2:46:27 PM org.openqa.selenium.remote.ProtocolHandshake createSession INFO: Detected dialect: W3C Apr 27, 2022 2:46:27 PM org.openqa.selenium.devtools.CdpVersionFinder findNearestMatch WARNING: Unable to find an exact match for CDP version 101, so returning the closest version found: 99 Apr 27, 2022 2:46:27 PM org.openqa.selenium.devtools.CdpVersionFinder findNearestMatch INFO: Found CDP implementation for version 101 of 99 Exception in thread “main” java.lang.NullPointerException: Cannot invoke “org.openqa.selenium.WebElement.click()” because “this.hotelsLink” is null at PageObject.Homepage.checkCookie(Homepage.java:73) at Hooks.main(Hooks.java:19)

Advertisement

Answer

I could see the following issues:

  1. It seems you didn’t pass driver instance to HomePage?

  2. This line is not needed – System.setProperty(“webdriver.chrome.driver”,”chromedriver”);

  3. The hotelsLink locator seems incorrect.

    JavaScript

    }

Hooks.java

JavaScript

Execution Result: I made the above changes and its working fine for me. (Note: I have removed PageObjects class and some Serenity imports as you didn’t share them) enter image description here

Advertisement