banking-bot/BankingBot/Extensions/IWebElementExtensions.cs
2017-02-13 23:27:36 +00:00

25 lines
543 B
C#

using OpenQA.Selenium;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
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;
}
}
}
}