2024-01-03 19:40:41 +00:00
|
|
|
namespace BotSharp.Plugin.WebDriver.Drivers.PlaywrightDriver;
|
|
|
|
|
|
|
|
|
|
public partial class PlaywrightWebDriver
|
|
|
|
|
{
|
|
|
|
|
private readonly IServiceProvider _services;
|
|
|
|
|
private readonly PlaywrightInstance _instance;
|
2024-01-23 23:14:57 +00:00
|
|
|
public PlaywrightInstance Instance => _instance;
|
2024-01-03 19:40:41 +00:00
|
|
|
|
|
|
|
|
public PlaywrightWebDriver(IServiceProvider services, PlaywrightInstance instance)
|
|
|
|
|
{
|
|
|
|
|
_services = services;
|
|
|
|
|
_instance = instance;
|
|
|
|
|
}
|
|
|
|
|
}
|