fix: Add a nominal wait time for remove overlay elements since it's already controllable through delay_before_return_html

This commit is contained in:
Aravind Karnam
2025-04-14 12:39:05 +05:30
parent 7d8e81fb2e
commit dcc265458c

View File

@@ -116,5 +116,5 @@ async () => {
// Wait a bit for any animations to complete
document.body.scrollIntoView(false);
await new Promise((resolve) => setTimeout(resolve, 250));
await new Promise((resolve) => setTimeout(resolve, 50));
};