19 lines
413 B
C#
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;
|
|
}
|
|
}
|
|
}
|
|
}
|