2024-02-01 03:29:13 +00:00
|
|
|
namespace BotSharp.Plugin.WebDriver.Drivers.PlaywrightDriver;
|
|
|
|
|
|
|
|
|
|
public partial class PlaywrightWebDriver
|
|
|
|
|
{
|
2024-02-12 17:11:05 +00:00
|
|
|
public async Task CloseBrowser(string conversationId)
|
2024-02-01 03:29:13 +00:00
|
|
|
{
|
2024-02-12 17:11:05 +00:00
|
|
|
await _instance.Close(conversationId);
|
2024-02-01 03:29:13 +00:00
|
|
|
}
|
|
|
|
|
}
|