Click to load more + scrape elements

Describe the problem. Trying to figure out how to scrape the name, hometown, education, number of medals for US Olympians, by also accounting for the load more button at the bottom of the table.

I've tried putting the child selectors underneath 'element click more' and under 'pagination click more' but neither of these options return any data.

Url: https://www.teamusa.com/athletes

Sitemap:
'{All Athletes

Name

Sport

Education

Hometown

Medals

Paxten Aaronson #11 of the USA controls the ball during the U23 match against Japan at Children's Mercy Park on June 11, 2024 in Kansas City, Kansas.
PA

Paxten Aaronson

Medford, NJ

Qualified | Paris 2024

Soccer

Medford, NJ

Head Shot
MA

Mason Abbiate

Soccer Paralympian 2016

San Diego, CA

Soccer

Del Norte High School (San Diego, Calif.) ‘16

San Diego, CA

JA

Jeremy Abbott

Figure Skating Olympian 2010, 2014

Aspen, CO

Number of olympic medals this Athlete has won

  • 0gold
  • 0silver
  • 1bronze

Figure Skating

Aspen, CO

Number of olympic medals this Athlete has won

  • 0gold
  • 0silver
  • 1bronze
Head Shot
MA

Mara Abbott

Cycling Olympian 2016

Boulder, CO

Cycling

Fairview High School (Boulder, Colo.) ‘04 Whitman College ‘08, Economics

Boulder, CO

MA

Monica Abbott

Softball Olympian 2008, 2020

Salinas, CA

Number of olympic medals this Athlete has won

  • 0gold
  • 2silver
  • 0bronze

Softball

North Salinas High School Tennessee - 2007

Salinas, CA

Number of olympic medals this Athlete has won

  • 0gold
  • 2silver
  • 0bronze
ZA

Zachary Abbott

Para Track and Field Paralympian 2012

Portland

Para Track and Field

University of Arizona

Portland

Head Shot
TA

Taylor Abbott

Austin, TX

Swimming

Cedar Park High School (Cedar Park, Texas) ‘16 University of Tennessee ‘20, Marketing

Austin, TX

Nia Abdallah
NA

Nia Abdallah

Taekwondo Olympian 2004

Houston, TX

Number of olympic medals this Athlete has won

  • 0gold
  • 1silver
  • 0bronze

Taekwondo

George Washington Carver High School for Applied Technology, Engineering and the Arts American Sports University

Houston, TX

Number of olympic medals this Athlete has won

  • 0gold
  • 1silver
  • 0bronze
Justin Abdelkader
JA

Justin Abdelkader

Ice Hockey Olympian 2022

Muskegon, MI

Ice Hockey

Michigan State University

Muskegon, MI

Abdi Abdirahman
AA

Abdi Abdirahman

Track and Field Olympian 2000, 2004, 2008, 2012, 2020

Tucson, AZ

Track and Field

Tucson High School (Tucson, Ariz.) '95 Pima Community College ’97; University of Arizona ‘01, Retail and Consumer Study

Tucson, AZ

View More Athletes
}'

Update, I've got to this stage where the click more works and the data preview works. But it still doesn't scrape anything when I click scrape:

{"_id":"teamusa-athletes-3-test","startUrl":["https://www.teamusa.com/athletes"],"selectors":[{"id":"load-more","parentSelectors":["_root"],"type":"SelectorElementClick","clickElementSelector":"div.css-1n2mv2k > button","clickElementUniquenessType":"uniqueText","clickType":"clickMore","delay":5000,"discardInitialElements":"do-not-discard","multiple":true,"selector":"div.css-1n2mv2k > button"},{"id":"custom-click","parentSelectors":["_root"],"type":"SelectorElementClick","clickElementSelector":"div.css-1n2mv2k > button","clickElementUniquenessType":"uniqueText","clickType":"custom","delay":5000,"discardInitialElements":"do-not-discard","multiple":true,"selector":"div.css-1n2mv2k > button"},{"id":"athlete-row","parentSelectors":["_root","load-more"],"type":"SelectorElement","selector":"tbody.css-0 > tr.css-0","multiple":true},{"id":"name","parentSelectors":["athlete-row"],"type":"SelectorText","selector":"th > div > div.chakra-stack > a > p","multiple":false,"regex":""},{"id":"sport","parentSelectors":["athlete-row"],"type":"SelectorText","selector":"td:nth-of-type(1) > p","multiple":false,"regex":""},{"id":"education","parentSelectors":["athlete-row"],"type":"SelectorText","selector":"td:nth-of-type(2) > p","multiple":false,"regex":""},{"id":"hometown","parentSelectors":["athlete-row"],"type":"SelectorText","selector":"td:nth-of-type(3) > p","multiple":false,"regex":""},{"id":"medals","parentSelectors":["athlete-row"],"type":"SelectorText","selector":"td:nth-of-type(4)","multiple":false,"regex":""}]}

something like this.... you had some mistakes in your sitemap

{"_id":"teamusa-athletes-3-test","startUrl":["https://www.teamusa.com/athletes"],"selectors":[{"clickElementSelector":"button:contains(View More)","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickMore","delay":2000,"discardInitialElements":"discard","id":"load-more","multiple":true,"parentSelectors":["_root"],"selector":"tbody tr.css-0","type":"SelectorElementClick"},{"id":"element","multiple":true,"parentSelectors":["_root"],"selector":"tbody tr.css-0","type":"SelectorElement"},{"id":"name","multiple":false,"parentSelectors":["element"],"regex":"","selector":"th > div > div.chakra-stack > a > p","type":"SelectorText"},{"id":"sport","multiple":false,"parentSelectors":["element"],"regex":"","selector":"td:nth-of-type(1) > p","type":"SelectorText"},{"id":"education","multiple":false,"parentSelectors":["element"],"regex":"","selector":"td:nth-of-type(2) > p","type":"SelectorText"},{"id":"hometown","multiple":false,"parentSelectors":["element"],"regex":"","selector":"td:nth-of-type(3) > p","type":"SelectorText"},{"id":"medals","multiple":false,"parentSelectors":["element"],"regex":"","selector":"td:nth-of-type(4)","type":"SelectorText"}]}