public class CucumberHooks {
public static void main(String[] args) {
}
protected static WebDriver driver;
@Before
public void setup() throws IOException {
ChromeOptions options = new ChromeOptions();
options.addExtensions(new File("extension_5_3_2_0.crx"));
DesiredCapabilities capabilities = new DesiredCapabilities();
capabilities.setCapability(ChromeOptions.CAPABILITY, options);
String browser = ReadPropertyFileSingleton.getInstance().getProp("browser");
driver = Util.setEnvironmentAndGetDriver(browser);
assert driver != null;
driver.manage().window().maximize();
driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
}
public static WebDriver getDriver() {
return driver;
}
@After
public void close() {
driver.quit();
}}
Код,где добавил расширений адблок через crx file
Когда запускаю тесты через feature file то запускается обычный браузер без блокировщика
также запускается браузер уже с блокировщиком,но степы не видит
в чём может быть проблема и возможно ли так использовать адблок?