Click Subfolders and data scrape

Hello.

I want to click recent year of each Subfolder and data scrape it

  1. Opinions Filed in recent year
  2. recent month

image

Hi, you can scrape the data from all the subfolders in the folder by using this method:

  1. Go to the folder “Opinions filed in recent year” (you can make “recent year” as a variable)
  2. Use Directory.GetDirectories to get all the subfolders. Use a variable to assign the expression to. More info here:
  1. Then loop through each item in the directory using a For Each loop and scrape the data.
    Hope this works!