Source code

Revision control

Copy as Markdown

Other Tools

// For hideSelectPopup.
Services.scriptloader.loadSubScript(
this
);
function openSelectPopup(selector, win = window) {
let popupShownPromise = BrowserTestUtils.waitForSelectPopupShown(win);
EventUtils.synthesizeKey("KEY_ArrowDown", { altKey: true }, win);
return popupShownPromise;
}