I\'m using Selenium WebDriver to test a Google Chrome extension I\'m developing. I noticed that ChromeDriver can be customised to add extensions to the instance
ChromeDriver
I was able to achieve this by using the AddArgument method to directly pass the information to Chrome. Here's what it looks like in C#:
AddArgument
options = new ChromeOptions(); options.AddArgument("--load-extension=" + unpackedExtensionPath);