10 lines
225 B
C#
10 lines
225 B
C#
namespace BotSharp.Plugin.WebDriver.Drivers.PlaywrightDriver;
|
|
|
|
public partial class PlaywrightWebDriver
|
|
{
|
|
public async Task CloseBrowser(string conversationId)
|
|
{
|
|
await _instance.Close(conversationId);
|
|
}
|
|
}
|