Webドライバに要素が存在するかどうかを確認する方法
Try catchを使用することは本当に唯一可能な方法ですか?
boolean present;
try {
driver.findElement(By.id("logoutLink"));
present = true;
} catch (NoSuchElementException e) {
present = false;
}
代わりにすることができます:
driver.findElements( By.id("...") ).size() != 0
これは厄介なトライ/キャッチを節約します
私はMikeの答えに同意しますが、オン/オフを切り替えることができる要素が見つからない場合は暗黙の3秒間待機します。これは、このアクションを頻繁に実行する場合に便利です。
driver.manage().timeouts().implicitlyWait(0, TimeUnit.MILLISECONDS);
boolean exists = driver.findElements( By.id("...") ).size() != 0
driver.manage().timeouts().implicitlyWait(3, TimeUnit.SECONDS);
たくさんのテストを実行しているのであれば、それを実用的な方法にするとパフォーマンスが向上するはずです。
コメントが述べているように、これはJavaではなくC#にありますが、考え方は同じです。私はこの問題を広範囲に調査しました、そして結局のところ問題は要素が存在しないときFindElementは常に例外を返すことです。 nullやその他のものを取得することを可能にするオーバーロードオプションはありません。これが私が他よりもこの解決策を好む理由です。
メソッドが作成されると、それは実際には非常にシンプルでエレガントです。 FindElementの代わりにFindElementSafeを使用することで、醜いtry/catchブロックを「見る」ことはなく、単純なExistsメソッドを使用できます。これは次のようになります。
IWebElement myLink = driver.FindElementSafe(By.Id("myId"));
if (myLink.Exists)
{
myLink.Click();
}
これが、IWebElementとIWebDriverを拡張する方法です。
IWebDriver.FindElementSafe
/// <summary>
/// Same as FindElement only returns null when not found instead of an exception.
/// </summary>
/// <param name="driver">current browser instance</param>
/// <param name="by">The search string for finding element</param>
/// <returns>Returns element or null if not found</returns>
public static IWebElement FindElementSafe(this IWebDriver driver, By by)
{
try
{
return driver.FindElement(by);
}
catch (NoSuchElementException)
{
return null;
}
}
IWebElement.Exists
/// <summary>
/// Requires finding element by FindElementSafe(By).
/// Returns T/F depending on if element is defined or null.
/// </summary>
/// <param name="element">Current element</param>
/// <returns>Returns T/F depending on if element is defined or null.</returns>
public static bool Exists(this IWebElement element)
{
if (element == null)
{ return false; }
return true;
}
多態性を使用してFindElementのIWebDriverクラスのインスタンスを変更することもできますが、それはメンテナンスの観点からは悪い考えです。
これは毎回私のために働きます:
if(!driver.findElements(By.xpath("//*[@id='submit']")).isEmpty()){
//THEN CLICK ON THE SUBMIT BUTTON
}else{
//DO SOMETHING ELSE AS SUBMIT BUTTON IS NOT THERE
}
アサーションをすることができます。
例を見てください
driver.asserts().assertElementFound("Page was not loaded",
By.xpath("//div[@id='actionsContainer']"),Constants.LOOKUP_TIMEOUT);
これはネイティブです。
public static void waitForElementToAppear(Driver driver, By selector, long timeOutInSeconds, String timeOutMessage) {
try {
WebDriverWait wait = new WebDriverWait(driver, timeOutInSeconds);
wait.until(ExpectedConditions.visibilityOfElementLocated(selector));
} catch (TimeoutException e) {
throw new IllegalStateException(timeOutMessage);
}
}
私はSelenium WebDriverの実装を拡張しました。私の場合はHtmlUnitDriverを使ってメソッドを公開しました。
public boolean isElementPresent(By by){}
このような:
これが私のコードです:
import Java.util.concurrent.TimeUnit;
import org.openqa.Selenium.By;
import org.openqa.Selenium.JavascriptExecutor;
import org.openqa.Selenium.WebDriver;
import org.openqa.Selenium.htmlunit.HtmlUnitDriver;
import org.openqa.Selenium.support.ui.ExpectedCondition;
import org.openqa.Selenium.support.ui.WebDriverWait;
public class CustomHtmlUnitDriver extends HtmlUnitDriver {
public static final long DEFAULT_TIMEOUT_SECONDS = 30;
private long timeout = DEFAULT_TIMEOUT_SECONDS;
public long getTimeout() {
return timeout;
}
public void setTimeout(long timeout) {
this.timeout = timeout;
}
public boolean isElementPresent(By by) {
boolean isPresent = true;
waitForLoad();
//search for elements and check if list is empty
if (this.findElements(by).isEmpty()) {
isPresent = false;
}
//rise back implicitly wait time
this.manage().timeouts().implicitlyWait(timeout, TimeUnit.SECONDS);
return isPresent;
}
public void waitForLoad() {
ExpectedCondition<Boolean> pageLoadCondition = new ExpectedCondition<Boolean>() {
public Boolean apply(WebDriver wd) {
//this will tel if page is loaded
return "complete".equals(((JavascriptExecutor) wd).executeScript("return document.readyState"));
}
};
WebDriverWait wait = new WebDriverWait(this, timeout);
//wait for page complete
wait.until(pageLoadCondition);
//lower implicitly wait time
this.manage().timeouts().implicitlyWait(100, TimeUnit.MILLISECONDS);
}
}
使用法:
CustomHtmlUnitDriver wd = new CustomHtmlUnitDriver();
wd.get("http://example.org");
if (wd.isElementPresent(By.id("Accept"))) {
wd.findElement(By.id("Accept")).click();
}
else {
System.out.println("Accept button not found on page");
}
Javaを使用して次のメソッドを書きます。
protected boolean isElementPresent(By by){
try{
driver.findElement(by);
return true;
}
catch(NoSuchElementException e){
return false;
}
}
アサーション中に上記のメソッドを呼び出します。
String link = driver.findElement(By.linkText(linkText)).getAttribute("href")
これにより、要素が指しているリンクが表示されます。