cutycapt: automatically create screenshots of web pages using a csv list

cutycapt: automatically create screenshots of web pages using a csv list

With CutyCapt, screenshots of web pages can be made very easily under Windows.

The URLs can be stored line by line in a csv or test file. With the help of a BatchScript each line can be processed. In this way, several thousand screenshots of various websites can easily be created, which can be very helpful, for example, in the case of various legal violations.

You can find a corresponding batch script code here:

SETLOCAL ENABLEDELAYEDEXPANSION
SET /A COUNT=1
FOR /F "tokens=*" %%i IN (urls.csv) DO (
    CutyCapt --url=%%i --min-width=1024 --out-format=jpeg --out=violation!COUNT!.png
    SET /A COUNT+=1
)

Leave a Reply

Your email address will not be published. Required fields are marked *