banking-bot/BankingBot/Extensions/IWebElementExtensions.cs
Aaron Yarborough 1e9b41a030 Refactor
2017-07-18 16:02:18 +01:00

19 lines
413 B
C#

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