goto method

Future<Online> goto(
  1. AbstractUrl url, {
  2. bool show = true,
})

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;
}