chromiumoxide
chromiumoxide copied to clipboard
How to use contexts etc?
I went to examples and couldn't find any code which creates contexts etc?
I want to translate this code
let browser = await firefox.launch({headless:false})
let context = await browser.newContext();
let page = await context.newPage();
await page.goto("https://jsonip.com");
this would be the same as
browser.new_page("https://jsonip.com")
@mattsse how to create new context though? Context are abit different though.