Quantcast
Channel: C#タグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 9364

SeleniumをMSTestで単体テスト  --メモ--

$
0
0
Visual Studioで新規プロジェクトを単体テストプロジェクト(.NET Framework)で作成。 NuGetでWebDriver chromedriver firefoxdriverなどを適宜インストール。 using OpenQA.Selenium; using OpenQA.Selenium.Chrome; と追加。 [TestClass] public class UnitTest1 { protected ChromeDriver driver; [TestInitialize] public void CreateDriver() { driver = new ChromeDriver(); } [TestMethod] public void ClickTestExample() { driver.Navigate().GoToUrl("http://www.selenium.academy/Examples/Interaction.html"); IWebElement button = driver.FindElement(By.Id("button")); button.Click(); } [TestCleanup] public void QuitDriver() { if (driver != null) driver.Quit(); } } [参考] Creating A Selenium Testing Framework In C# MsTestによるユニットテストの解説

Viewing all articles
Browse latest Browse all 9364

Latest Images

Trending Articles