2024-02-06 14:07:09 +00:00
|
|
|
|
|
|
|
|
namespace BotSharp.Plugin.WebDriver.Drivers.PlaywrightDriver;
|
|
|
|
|
|
|
|
|
|
public partial class PlaywrightWebDriver
|
|
|
|
|
{
|
|
|
|
|
public async Task<string> ScreenshotAsync(string path)
|
|
|
|
|
{
|
|
|
|
|
var bytes = await _instance.Page.ScreenshotAsync(new PageScreenshotOptions
|
|
|
|
|
{
|
|
|
|
|
Path = path,
|
|
|
|
|
});
|
|
|
|
|
|
2024-02-06 20:42:35 +00:00
|
|
|
return "data:image/png;base64," + Convert.ToBase64String(bytes);
|
2024-02-06 14:07:09 +00:00
|
|
|
}
|
|
|
|
|
}
|