[BUG] CloseSession Event is never triggered on Chrome and Firefox #5079
Open
Description
With FiftyOne 1.0.1 on my Windows 10 with Python 3.10 I want to continue my script after closing the browser session. Unfortunately, the CloseSession
event is never triggered, hence session.wait(1)
waits forever.
Code to reproduce issue
Chrome v130.0.6723.117 is set to default browser with
import fiftyone as fo
dataset = fo.Dataset()
if __name__ == '__main__':
print("Launch...")
session = fo.launch_app(dataset) # , browser=r"C:\Program Files\Google\Chrome\Application\chrome.exe %s")
session.wait(1)
print("Yipee")
Same with Firefox v132.0.1
System information
- OS Platform and Distribution Windows 10 Pro 22H2:
- Python version (
python --version
): Python 3.10.9 - FiftyOne version (
fiftyone --version
): FiftyOne v1.0.1, Voxel51, Inc. - FiftyOne installed from (pip or source):
Can anyone please give me some hint what's missing?