diff --git a/skyvern/webeye/actions/actions.py b/skyvern/webeye/actions/actions.py index 7e014948..aa96b1ba 100644 --- a/skyvern/webeye/actions/actions.py +++ b/skyvern/webeye/actions/actions.py @@ -148,6 +148,8 @@ class Action(BaseModel): return WaitAction.model_validate(value) elif action_type is ActionType.SOLVE_CAPTCHA: return SolveCaptchaAction.model_validate(value) + elif action_type is ActionType.RELOAD_PAGE: + return ReloadPageAction.model_validate(value) else: raise ValueError(f"Unsupported action type: {action_type}") else: