C# Selenium (1) 一次就上手
1.安裝Visual Studio
2.建立新方案,選擇主控台應用程式
2.請至NutGet => 管理方案的NutGet套件
3.搜尋 「selenium」並且安裝
4.using namespace
using OpenQA.Selenium;
using OpenQA.Selenium.Chrome;
5. chrome driver
如果沒有chrome dirver請先安裝
https://github.com/jsakamoto/nupkg-selenium-webdriver-chromedriver/
6. 開始寫第一支小程式
IWebDriver driver = new ChromeDriver();
driver.Url = "http://www.google.com";
YA超簡單~~ 這樣就可以執行了
參考:
tutorial
http://toolsqa.com/selenium-webdriver/c-sharp/set-up-selenium-webdriver-with-visual-studio-in-c/
webdriver
https://github.com/jsakamoto/nupkg-selenium-webdriver-chromedriver/
https://github.com/jsakamoto/nupkg-selenium-webdriver-chromedriver/
留言
張貼留言