Need help scraping online menu for calories

Hi,
I am trying to scrape an online menu to get the food name and calorie information for breakfast, lunch, and dinner. The problem I am running into is that the button to change from breakfast, lunch, and dinner has the same link. I have tried to use Element Attribute but I am still struggling. Could someone please help, I get no data scraped.

Link: https://harvesttableuva.com/locations/runk-dining-hall/
Here is my original sitemap:
{"_id":"ogrunk","startUrl":["https://harvesttableuva.com/locations/runk-dining-hall/"],"selectors":[{"id":"timing","linkType":"linkFromHref","multiple":true,"parentSelectors":["_root"],"selector":"a.c-tabs-nav__link","type":"SelectorLink"},{"id":"menu_item","linkType":"linkFromHref","multiple":true,"parentSelectors":["timing"],"selector":".is-active a","type":"SelectorLink"},{"id":"name","multiple":false,"parentSelectors":["menu_item"],"regex":"","selector":"#nutrition-slider-stage h2","type":"SelectorText"},{"id":"calories","multiple":false,"parentSelectors":["menu_item"],"regex":"","selector":"tbody th[colspan='3']","type":"SelectorText"}]}

Hi,

I slightly adjusted the selector types, please test the below sitemap:

{"_id":"ogrunk","startUrl":["https://harvesttableuva.com/locations/runk-dining-hall/"],"selectors":[{"id":"timing","paginationType":"clickOnce","parentSelectors":["_root","timing"],"selector":"a.c-tabs-nav__link","type":"SelectorPagination"},{"clickActionType":"real","clickElementSelector":".is-active a","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickOnce","delay":1000,"discardInitialElements":"do-not-discard","id":"menu_item","multiple":true,"parentSelectors":["timing"],"selector":"_parent_","type":"SelectorElementClick"},{"id":"name","multiple":false,"parentSelectors":["menu_item"],"regex":"","selector":"#nutrition-slider-stage h2","type":"SelectorText"},{"id":"calories","multiple":false,"parentSelectors":["menu_item"],"regex":"","selector":"tbody th[colspan='3']","type":"SelectorText"}]}

Hope this helps!

brunch button:
div#menu-tabs a.c-tabs-nav__link[data-tabid="0"]

late lunch button:
div#menu-tabs a.c-tabs-nav__link[data-tabid="1"]

dinner button:
div#menu-tabs a.c-tabs-nav__link[data-tabid="2"]