How do I navigate on a specific part and scrape it?

Describe the problem.
I want to navigate on the Management and Personnel section and scrape whatever's in there.

Url: The Geller Law Group in Washington, D.C., VA, US

Sitemap:
{"_id":"Bestlawfirms","startUrl":["The Geller Law Group in Washington, D.C., VA, US> div.d-flex","type":"SelectorText"},{"clickActionType":"real","clickElementSelector":"button#management-tab","clickElementUniquenessType":"uniqueText","clickType":"clickOnce","delay":2000,"discardInitialElements":"do-not-discard","id":"Contact","multiple":true,"parentSelectors":["_root"],"selector":"a.position-absolute","type":"SelectorElementClick"},{"id":"Contact Person","multipleType":"singleColumnWithSeparator","parentSelectors":["Contact"],"regex":"","selector":"parent","type":"SelectorText"}]}

Hi,

In situations where it is required to scrape data behind tabs, I recommend copying something from within the tab, then refreshing the page, and searching the HTML for the phrase.

In this case, the data is available without opening the tab within the [aria-labelledby="management-tab"] element:

Here is one example of how this data could be scraped:

{"_id":"bestlawfirms","startUrl":["https://www.bestlawfirms.com/firms/the-geller-law-group/92260/US#offices"],"selectors":[{"elementLimit":0,"id":"management-tab","multiple":true,"parentSelectors":["_root"],"scroll":false,"selector":"[aria-labelledby=\"management-tab\"]","type":"SelectorElement"},{"id":"text","multipleType":"singleColumnWithSeparator","parentSelectors":["management-tab"],"regex":"","selector":".leader-box div","type":"SelectorText"}]}