在我的Angular应用中,我使用inline installation of my Chrome extension (more in the Chrome docs here)。
现在我想要“模拟”并使用Protractor在Selenium浏览器中测试扩展的安装。像
这样的东西element(by.id('installbutton')).click();
expect(browser.inlineInstallExtensionWindow()).toShowUp(); // something like that
我使用标准webdriver-manager
和jasmine2
作为框架(因为旧版jasmine存在一些问题)。