0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Windows 10 + nodejs + selenium-webdriver + geckodriver で headless firefox を試してみる

Posted at

#目的
Firefoxをnodejs + selenium-webdriver + geckodriverからキックしてみる

##SeleniumBasicのインストール
※環境変数の文字数制限により、同居(笑)
Seleniumbasicの Release page より SeleniumBasic-2.0.9.0.exe をDLする
exeを実行すると、C:\Users\user_name\AppData\Local\SeleniumBasic にインストールされる
ソースコードのプロジェクトをVS2019で開くと .NET Framework 3.5 を指定しているので
Windowsの設定 -> アプリ -> オプション機能 -> Windowsのその他の機能 -> .NET Framework 3.5 が有効であることを確認する

##selenium-webdriverのインストール
※v4なのは、Edgeと比較するため(かもしれない)


> npm install -S selenium-webdriver
+ selenium-webdriver@4.0.0-alpha.7

##Geckodriverのインストール
mozilla/geckodriver
より最新版(geckodriver-v0.26.0-win64.zip)をDLする
geckodriver-v0.26.0-win64.zip を解凍後 geckodriver.exe を SeleniumBasic フォルダに上書きする

##サンプルコード

const { Builder, By, Key, until } = require('selenium-webdriver');

let driver;
(async () => {
  try {
    driver = await new Builder().forBrowser('firefox').build();
    
    await driver.get('https://www.google.co.jp/');
    await driver.findElement(By.name('q')).sendKeys('webdriver', Key.RETURN);
    await driver.wait(until.titleIs('webdriver - Google 検索'), 5000); 
    // await driver.sleep(5000);
  }
  catch(error) {
    console.error(error);
  }
  finally {
    if(driver) {
      await driver.quit();
    }
  }
})();

#参考にしたのは以下のサイト
selenium-webdriver
mozilla/geckodriver
Windows 10 + Excel2016 VBA + seleniumbasic で chromedriver / msedgedriver を使ってみる

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?