8. Selenium WebDriver ä¸çªä½ã¬ãã«ãªå®è£ ã§ããã§ã§ããªãæä½ã¯ä»ã® ã§ãã§ããªã public class BingTest {//ãã©ã¤ãã¼ã®ã»ããã¢ããã¨ãã¯çç¥ @Test public void title_of_bing_should_contain_search_query_name() throws Exception { driver.get("http://www.bing.com"); driver.findElement(By.id("sb_form_q")).sendKeys("automation"); driver.findElement(By.id("sb_form_go")).click(); assertThat(driver.getTitle(), containsString("automation")); } } (´ã»Ïã»ï½)
{{#tags}}- {{label}}
{{/tags}}