BotSharp/src/Plugins/BotSharp.Plugin.WebDriver/Drivers/PlaywrightDriver/PlaywrightWebDriver.CloseCurrentPage.cs
2024-06-10 10:51:14 -05:00

16 lines
381 B
C#

namespace BotSharp.Plugin.WebDriver.Drivers.PlaywrightDriver;
public partial class PlaywrightWebDriver
{
public async Task<BrowserActionResult> CloseCurrentPage(MessageInfo message)
{
await _instance.CloseCurrentPage(message.ContextId);
var result = new BrowserActionResult
{
IsSuccess = true
};
return result;
}
}