Group a title and a table together, when all have same element

They are 4 titles and each title has a table below it. I want to group each of them together. They all have one parent element which is the entire page
So does h4>Table

Url: 4 Day Dumbbell Only Upper/Lower Workout Routine

Sitemap:
{"_id":"muscle_fitness_muscle_building","startUrl":["https://www.muscleandstrength.com/workouts/dumbbell-only-upper-lower-workout-routine"],"selectors":[{"id":"Title","type":"SelectorText","parentSelectors":["_root"],"selector":"h1","multiple":false,"regex":"","delay":0},{"id":"workout_day","type":"SelectorText","parentSelectors":["page"],"selector":".field-item h4","multiple":true,"regex":"","delay":0},{"id":"Workout_table","type":"SelectorElement","parentSelectors":["page"],"selector":"tbody","multiple":true,"delay":0},{"id":"exercise_name","type":"SelectorText","parentSelectors":["workout_table_row"],"selector":"a","multiple":true,"regex":"","delay":0},{"id":"sets","type":"SelectorText","parentSelectors":["workout_table_row"],"selector":"td:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"reps","type":"SelectorText","parentSelectors":["workout_table_row"],"selector":"td:nth-of-type(3)","multiple":false,"regex":"","delay":0},{"id":"workout_table_row","type":"SelectorElement","parentSelectors":["Workout_table"],"selector":"tr:nth-of-type(n+2)","multiple":true,"delay":0},{"id":"page","type":"SelectorElement","parentSelectors":["_root"],"selector":"div.node-layout--body","multiple":false,"delay":0}]}

HI @laserCat Do you want to merge all tables together like this?

{"_id":"muscle_fitness_muscle_building","startUrl":["https://www.muscleandstrength.com/workouts/dumbbell-only-upper-lower-workout-routine"],"selectors":[{"id":"Title","type":"SelectorText","parentSelectors":["_root"],"selector":"h1","multiple":false,"regex":"","delay":0},{"id":"table","type":"SelectorElement","parentSelectors":["_root"],"selector":"tr:nth-of-type(n+2)","multiple":true,"delay":0},{"id":"exercise","type":"SelectorText","parentSelectors":["table"],"selector":"td:nth-of-type(1)","multiple":false,"regex":"","delay":0},{"id":"sets","type":"SelectorText","parentSelectors":["table"],"selector":"td:nth-of-type(2)","multiple":false,"regex":"","delay":0},{"id":"reps","type":"SelectorText","parentSelectors":["table"],"selector":"td:nth-of-type(3)","multiple":false,"regex":"","delay":0}]}

Sorry @viesturs I just saw that you had replied.

I wanted to group the table title with the table like this:

So each table scrape would look like this:

I can do it for one table but not for all of them.

Thank you for taking the time to help me out