How can I use local extensions on Microsoft Edge browser in automation, similar to using chromeOptions for Chrome?
Hello Alex-walker,
The only way to add extensions to Edge is through the API as described in the provided email. I tested this method and successfully uploaded an extension to Edge from my local machine using the API found here: API Documentation Link.
Once you’ve uploaded the extension, you can use the S3 URL in your script like this:
String[] extension = {"https://automation-prod-user-files.s3.amazonaws.com/extensions/orgId-XXXX/2.1.0_0.zip"};
capabilities.setCapability("lambda:loadExtension", extension);