Automater / Applescriptページビューアー/ダウンローダーループ


1

ダウンロードしようとしている9500の個別のオーディオファイルがあります。

a)Webサイトへのログインを要求するb)リダイレクトするサブディレクトリにある ダウンロードリンクへ

(例:www.whatever.com/product/download/id/1234 ==> whatever-file-name.mp3をダウンロードするプロンプト)

「http://www.blah.com/product/download/id/1」にアクセスするapplescript / automatorアプリを書くのを手伝ってくれませんか。ダウンロードが完了するまで待ってから+1してからhttp://www.blahにアクセスしてください 9600までのcom / product / download / id / 2ループ

回答:


1
set theint to 1
set theurl to "http://blah.com/"

repeat until theint = 6
    tell application "Google Chrome"
        set URL of active tab of window 1 to theurl & theint
        activate
    end tell
    set theint to theint + 1
    delay 5
end repeat

これまでのところ正常に動作します。5秒の遅延を「ダウンロードが終了したとき」などに変更する必要があります。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.