This promise will resolve to the new browser instance, so it can be used nicely with `await` and in a control-flow-less world: TODO - think of a better name. ``` let b2 = await browser.forkAndInitializeNewBrowserInstance(); await b2.get('example.com'); // continue to use b2 as a browser instance. ```
This promise will resolve to the new browser instance, so it can be used nicely with
awaitand in a control-flow-less world:TODO - think of a better name.