10 lines
No EOL
172 B
C#
10 lines
No EOL
172 B
C#
using OpenQA.Selenium;
|
|
using System;
|
|
|
|
namespace BankingBot.Contracts
|
|
{
|
|
public interface IBrowserBot : IDisposable
|
|
{
|
|
IWebDriver WebDriver { get; }
|
|
}
|
|
} |