banking-bot/BankingBot/Contracts/IBrowserBot.cs

10 lines
No EOL
172 B
C#

using OpenQA.Selenium;
using System;
namespace BankingBot.Contracts
{
public interface IBrowserBot : IDisposable
{
IWebDriver WebDriver { get; }
}
}