static bool canLoadPage(S url) {
  try {
    assertNotNull(loadPage(url));
    true;
  } catch {
    ret false;
  }
}