Created
September 2, 2018 13:08
-
-
Save AllenFang/17fea036b224f3349310a283f7671f64 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import webdriver from 'selenium-webdriver'; | |
import { Driver, Options } from 'selenium-webdriver/chrome'; | |
const CRX_PATH = // YOUR_LOCAL_CRX_PATH | |
const options = new Options(); | |
options.addExtensions(CRX_PATH); | |
const driver = Driver.createSession(options); | |
// You can start work with driver now.. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment