banking-bot/BankingBot/Extensions/IWebElementExtensions.cs
Aaron Yarborough 2e13404ca5 Refactor
2017-04-06 13:20:46 +01:00

20 lines
427 B
C#

using OpenQA.Selenium;
namespace BankingBot.Extensions
{
public static class IWebElementExtensions
{
public static bool HasElement(this IWebElement element, By by)
{
try
{
element.FindElement(by);
return true;
}
catch (NoSuchElementException)
{
return false;
}
}
}
}