ruifigueira / playwright-crx

Playwright for chrome extensions
Apache License 2.0
81 stars 15 forks source link

support recorded script editing #23

Closed adrianna1211 closed 2 months ago

adrianna1211 commented 2 months ago

Hi, is there any way to support script editing in playwright inspector? After I recorded some steps, I want to change the text input so that it won't be clocked by duplication check. thx!

ruifigueira commented 2 months ago

Unfortunately no.

Chrome extensions don't allow running arbitrary code for security reasons, so this extension doesn't actually execute the code, and rather replays the actions that were stored during the recording. The recorder then knows which line to highlight because it maps which line corresponds to each action.