2024-02-04 22:55:46 +00:00
|
|
|
namespace BotSharp.Plugin.WebDriver.Drivers.PlaywrightDriver;
|
|
|
|
|
|
|
|
|
|
public partial class PlaywrightWebDriver
|
|
|
|
|
{
|
2024-02-12 17:11:05 +00:00
|
|
|
public async Task<T> EvaluateScript<T>(string conversationId, string script)
|
2024-02-04 22:55:46 +00:00
|
|
|
{
|
2024-02-12 17:11:05 +00:00
|
|
|
await _instance.Wait(conversationId);
|
2024-02-04 22:55:46 +00:00
|
|
|
|
2024-02-12 17:11:05 +00:00
|
|
|
return await _instance.GetPage(conversationId).EvaluateAsync<T>(script);
|
2024-02-04 22:55:46 +00:00
|
|
|
}
|
|
|
|
|
}
|