Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in DevOps and Agile by (19.7k points)

I'm having the following issue: When I'm running my automation tests, I keep getting the following alert "Disable Developer Mode Extension" in Chrome.

enter image description here

Is there a way to remove/disable this?. It is a blocker for me as it is making me fail some tests.

Thanks in advance

1 Answer

0 votes
by (62.9k points)

Create an object of ChromeOptions class

ChromeOptions options = new ChromeOptions();

 Add a parameter which will disable the extension

options.addArguments("--disable-extensions");

 Start the chrome session

WebDriver driver = new ChromeDriver(options);

Hope this helps!

If you are interested to learn Selenium on a much deeper level and want to become a professional in the testing domain, check out Intellipaat’s Selenium training!

Browse Categories

...