Merge pull request #413 from ueokande/reopen-current-window

Reopen current window
This commit is contained in:
Shin'ya Ueoka 2018-06-16 22:22:24 +09:00 committed by GitHub
commit 9b27e4cd4f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 2710 additions and 2689 deletions

View file

@ -222,6 +222,8 @@ describe("tab test", () => {
}).then((win) => {
expect(win.tabs).to.have.lengthOf(1);
return keys.press(win.tabs[0].id, 'u');
}).then(() => {
return new Promise((resolve) => setTimeout(resolve, 100));
}).then(() => {
return windows.get(targetWindow.id);
}).then((win) => {

5385
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -59,13 +59,17 @@ const closeTabsByKeywordsForce = (keyword) => {
};
const reopenTab = () => {
return browser.sessions.getRecentlyClosed({
maxResults: 1
let window = null;
return browser.windows.getCurrent().then().then((w) => {
window = w;
return browser.sessions.getRecentlyClosed();
}).then((sessions) => {
if (sessions.length === 0) {
let session = sessions.find((s) => {
return s.tab && s.tab.windowId === window.id;
});
if (!session) {
return;
}
let session = sessions[0];
if (session.tab) {
return browser.sessions.restore(session.tab.sessionId);
}