simply spec
authordeepak1556 <hop2deep@gmail.com>
Sun, 5 Mar 2017 18:52:20 +0000 (00:22 +0530)
committerdeepak1556 <hop2deep@gmail.com>
Sun, 5 Mar 2017 18:52:20 +0000 (00:22 +0530)
spec/static/main.js

index 1e81ddc..cfc2124 100644 (file)
@@ -307,18 +307,7 @@ ipcMain.on('handle-unhandled-rejection', (event, message) => {
 ipcMain.on('navigate-with-pending-entry', (event, id) => {
   const w = BrowserWindow.fromId(id)
 
-  const source = `
-    <body>
-      <a href='http://host'>Link</a>
-    </body>
-    <script>
-      setInterval(function () {
-        document.getElementsByTagName('a')[0].click();
-      }, 100)
-    </script>
-  `
-
-  w.webContents.on('did-fail-load', () => {
+  w.webContents.on('did-start-loading', () => {
     w.loadURL('about:blank')
   })
 
@@ -329,7 +318,7 @@ ipcMain.on('navigate-with-pending-entry', (event, id) => {
   })
 
   w.webContents.session.clearHostResolverCache(() => {
-    w.loadURL(`data:text/html,${source}`)
+    w.loadURL('http://host')
   })
 })