async goto(url: string): Promise<void> {
    this.connectCDP();
    await this.page.goto(url);
    await this.storeHTML(await this.page.content());
  }