You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, Congratulations on V2! Unfortunately, I am still hitting issues with my use scenario:
I am creating a window, showing some information for a short time, and then closing the window so that I can open another.
The reason I cannot navigate between pages is because I need the documents to be a "top-level browsing context[s], whose session history contains only one Document." So that I can close them from JavaScript with window.close().
varwindow=newPhotinoWindow()// example only
window.WindowCreated+=(sender,eventArgs)=>{Thread.Sleep(TimeSpan.FromSeconds(5));window.Close();};window.Load(newUri("https://localhost:5001/"));window.WaitForClose();window=null;// let the message loop run for a bit to make sure everything is cleaned upThread.Sleep(100);varwindow2=newPhotinoWindow()
window2.Load(newUri("https://localhost:5001/"));window2.WaitForClose()
The second window shows and then instantly closes
The text was updated successfully, but these errors were encountered:
I am also running into this exact problem for my use-case. For reference, I am running on Windows 10 21H2. Has there been any progress towards figuring out this issue?
Hi, Congratulations on V2! Unfortunately, I am still hitting issues with my use scenario:
I am creating a window, showing some information for a short time, and then closing the window so that I can open another.
The reason I cannot navigate between pages is because I need the documents to be a "top-level browsing context[s], whose session history contains only one Document." So that I can close them from JavaScript with
window.close()
.The second window shows and then instantly closes
The text was updated successfully, but these errors were encountered: