16 lines
357 B
C#
16 lines
357 B
C#
|
|
|
||
|
|
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,
|
||
|
|
});
|
||
|
|
|
||
|
|
return Convert.ToBase64String(bytes);
|
||
|
|
}
|
||
|
|
}
|