2024-02-01 03:29:13 +00:00
|
|
|
namespace BotSharp.Plugin.WebDriver.Drivers.PlaywrightDriver;
|
|
|
|
|
|
|
|
|
|
public partial class PlaywrightWebDriver
|
|
|
|
|
{
|
2024-02-06 05:05:52 +00:00
|
|
|
public async Task<bool> GoToPage(BrowserActionParams actionParams)
|
2024-02-01 03:29:13 +00:00
|
|
|
{
|
2024-02-06 05:05:52 +00:00
|
|
|
await _instance.Page.GotoAsync(actionParams.Context.Url);
|
2024-02-01 03:29:13 +00:00
|
|
|
await _instance.Page.WaitForLoadStateAsync(LoadState.DOMContentLoaded);
|
2024-02-06 05:05:52 +00:00
|
|
|
return true;
|
2024-02-01 03:29:13 +00:00
|
|
|
}
|
|
|
|
|
}
|