3
2

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 5 years have passed since last update.

ModernなSelenium IDEの.side->WebDriver向けJavaコードの変換方法

Posted at

.side->.javaの変換方法

Selenium IDE->JUnitテストのお手軽コード生成

1.Selenium IDEを開きます

1.png

2.テストケースを右クリック、Exportを選択

2.png

3.Select languageからJava JUnitを選択

(Mochaとかpytestとかもあるんですね…)
image.png

終わり

あとは適宜、JUnitから流して終わり。

JUnitで生成したコード

ATest.java
// Generated by Selenium IDE
import org.junit.Test;
import org.junit.Before;
import org.junit.After;
import static org.junit.Assert.*;
import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.core.IsNot.not;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.Dimension;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.interactions.Actions;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.WebDriverWait;
import org.openqa.selenium.JavascriptExecutor;
import org.openqa.selenium.Alert;
import org.openqa.selenium.Keys;
import java.util.*;
public class ATest {
  private WebDriver driver;
  private Map<String, Object> vars;
  JavascriptExecutor js;
  @Before
  public void setUp() {
    driver = new FirefoxDriver();
    js = (JavascriptExecutor) driver;
    vars = new HashMap<String, Object>();
  }
  @After
  public void tearDown() {
    driver.quit();
  }
  @Test
  public void a() {
    driver.get("https://www.google.com/");
    driver.findElement(By.name("q")).sendKeys("qiita");
    driver.findElement(By.name("q")).sendKeys(Keys.ENTER);
  }
}

…少し手直しはしたほうが良さそうかな…
テストコードは書きたくないし、IDEはかゆいところに手が届かないし、
適当でいいならこれでなんとかなる気がします。

ModernなSelenium IDEの記事が少ないので、記事が増えてくことを願います…

3
2
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
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?