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