Browser interactions
ブラウザーの情報
タイトルの取得
ブラウザーから現在のページタイトルを読むことができます。
      String title = driver.getTitle();title = driver.title            String title = driver.Title;    current_title = driver.title    let title = await driver.getTitle();driver.title現在のURLを取得
ブラウザーのアドレスバーから現在のURLを読むには、次を使用します。
      String url = driver.getCurrentUrl();url = driver.current_url            String url = driver.Url;    current_url = driver.current_url    let currentUrl = await driver.getCurrentUrl();driver.currentUrlVirtual Authenticator
A representation of the Web Authenticator model.




