package com.mavlushechka.a1qa.driverUtils; import org.openqa.selenium.WebDriver; public class WebDriverSingleton { private static WebDriver instance; private WebDriverSingleton() { } protected static WebDriver getInstance() { if (instance == null) { instance = WebDriverFactory.createWebDriver(); } return instance; } }