I was wondering, is there a way to get the ID of the default/persistent browser context?
Target.getBrowserContexts returns only those created by Target.createBrowserContext and not the default one. One way to get that ID would be to create a new target without passing a browserContextId and then call Target.getTargetInfo to find its browserContextId, but I'm wondering if there's a way to get it without having to create a new Target. I know that you don't need to pass this ID to create a Target in the default context, but a library that I'm using kinda needs it for bookkeeping purposes so I was trying to determine the best way to get it.