When you create the drivers for Chrome, use the following code as you see here:
ChromeOptions options = new ChromeOptions();
options.addArguments("chrome.switches","--disable-extensions");
System.setProperty("webdriver.chrome.driver",(System.getProperty("user.dir") + "//src//test//resources//chromedriver_new.exe"));
driver = new ChromeDriver(options);
This needs to be added to the conf.js file so that SeleniumWrapper will work properly.