In my Angular app, I use inline installation of my Chrome extension (more in the Chrome docs here).
Now I somehow want to "emulate" and test the installation of the extension in the Selenium browser using Protractor. Something like
element(by.id('installbutton')).click();
expect(browser.inlineInstallExtensionWindow()).toShowUp(); // something like that
I am using the standard webdriver-manager
and jasmine2
as a framework (because of some issues with older version of jasmine).