Operations on "chrome://" pages are not supported when using Playwright.
If you are migrating your tests to Playwright, for example, operations such as accessing "chrome://downloads" and checking the contents of downloaded files will no longer be possible. If the relevant operations are included in your test cases, please update the test cases by referring to the following.
Before:
1. Click the link to a downloaded file on the "chrome://downloads" page.
After:
1. Save the "href" attribute of the link above to a variable named <filepath> using the "Store attribute" command.
2. Extract the filename from the <filepath> and save it to a variable named <filename> using the "run typescript" command.
- Inputs: "filepath" "${filepath}
- Outputs: "filename"
function magicpodCustomStep(args: Args): Output { return [args.filepath.split('/').pop()]; }
3. Navigate to the following URL: file:////var/www/magic_pod_work/downloads/${filename} (Note: This path is for cloud browsers. Please adjust the path accordingly for a local PC.)