官术网_书友最值得收藏!

The By.id() method

On a web page, each element is uniquely identified by an ID attribute, which is optionally provided. An ID can be assigned manually by the developer of the web application or left to be dynamically generated by the application. Dynamically-generated IDs can be changed on every page refresh or over a period of time. Now, consider the HTML code of the Search box:

<input id="search" type="search" name="q" value="" class="input-text required-entry" maxlength="128" placeholder="Search entire store here..." autocomplete="off">

In the preceding code, the id attribute value of the search box is search.

Let's see how to use the ID attribute as a locating mechanism to find the Search box:

@Test
public void byIdLocatorExample() {
WebElement searchBox = driver.findElement(By.id("search"));
searchBox.sendKeys("Bags");
searchBox.submit();
assertThat(driver.getTitle())
.isEqualTo("Search results for: 'Bags'");
}

In preceding code, we used the By.id() method and the search box's id attribute value to find the element.

Here, try to use the By.id identifier, and use the name value (that is, q) instead of the id value (that is, search). Modify line three as follows:

WebElement searchBox = driver.findElement(By.id("q")); 

The test script will fail to throw an exception, as follows:

Exception in thread "main" org.openqa.selenium.NoSuchElementException: Unable to locate element: {"method":"id","selector":"q"}

WebDriver couldn't find an element by id whose value is q. Thus, it throws an exception saying NoSuchElementException.

主站蜘蛛池模板: 固原市| 呼和浩特市| 城步| 于田县| 县级市| 牟定县| 禄劝| 镇赉县| 北碚区| 揭西县| 江安县| 全州县| 彩票| 维西| 兴隆县| 区。| 浮梁县| 邯郸市| 都江堰市| 苍梧县| 盈江县| 阿合奇县| 沭阳县| 锡林郭勒盟| 安阳县| 罗甸县| 东宁县| 青海省| 冀州市| 卓资县| 永年县| 宁晋县| 新竹县| 申扎县| 枞阳县| 黔江区| 龙胜| 逊克县| 淄博市| 商水县| 长武县|