We are relying on puppeteer to automate testing of our extension. I can automate most things except I cannot click the button that our extension adds to the browser's toolbar.
Could there be an API to interact with browser action buttons?
Something to the tune of
let actionButtons = await browser.actionButtons();
await actionButtons[0].click();
would be great.
This will allow us to fully automate testing of our extension workflow. Thanks!