You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 3, 2022. It is now read-only.
I attempted to use the recorder to do the following:
Navigate to web.dev
Enter "images" into the search field
Click on the first result (Optimize images with Thumbor)
The first two steps complete correctly. The last step does not. I wonder if this may be due to it trying to perform the await click action prior to the fetch/render for the results DOM being ready?
const{open, click, type, submit}=require('./lib/runner.js');open('https://web.dev',{},async()=>{awaitclick('aria/searchbox[name="Search"]');awaittype('aria/searchbox[name="Search"]','images');awaitclick('aria/link[name="Optimize images with Thumbor"]');});
The text was updated successfully, but these errors were encountered:
I attempted to use the recorder to do the following:
The first two steps complete correctly. The last step does not. I wonder if this may be due to it trying to perform the
await click
action prior to the fetch/render for the results DOM being ready?The text was updated successfully, but these errors were encountered: