すべての俳優の名前をプルしたい場合は、これを試しましたが、1 つの名前しかプルしません。と言うすべてのタグを引っ張らせるためにできる繰り返しループや何か他のものはあります<span itemprop="name">
か?
set astid to AppleScript's text item delimiters
set startHere to "<span itemprop=\"name\">"
set stopHere to "</span>"
set mysource_html to do shell script "curl https://play.google.com/store/movies/details?id=H9EKG4-JHSw"
set AppleScript's text item delimiters to startHere
set blurb1 to text item 2 of mysource_html
set AppleScript's text item delimiters to stopHere
set blurb2 to text item 1 of blurb1
set AppleScript's text item delimiters to astid