goto method
Implementation
Future<Online> goto(AbstractUrl url, {bool show = true}) async {
var clean_url = Uri.encodeFull(url.url);
if (show) Show.visiting(clean_url);
await (await page).goto(clean_url, wait: Until.domContentLoaded);
return this;
}