Scraping javascript website

Hi,
im trying to scrape this website

https://solutions.oracle.com/scwar/scr/Partners/index.html?logout=true
i select "business need" and "SaaS Implementation Services" on the left
i get 133 results
i need the links from these companies
all links starting with /scwar/scr/Partner/ etc


so that i can scrape details later
any idea?
thanks!

Sitemap:
{"_id":"oracle2","startUrl":["https://solutions.oracle.com/scwar/scr/Partners/index.html?logout=true"],"selectors":[{"id":"rows","type":"SelectorElement","parentSelectors":["_root"],"selector":"div.partner-info","multiple":true,"delay":0},{"id":"company","type":"SelectorText","parentSelectors":["rows"],"selector":"span","multiple":false,"regex":"","delay":0},{"id":"link","type":"SelectorElementClick","parentSelectors":["rows"],"selector":"span","multiple":false,"delay":0,"clickElementSelector":"span","clickType":"clickMore","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueText"}]}

If the business->saas menus text is not needed (i.e. doesn't need to be included in your scrape), you can separately trigger the search first, then do the scrape after.

The Url can be obtained with Type:Element Attribute but you'll need to do some post-processing. Url text seems quite uniform, so it's a straightforward search n replace.

Adjust delays if needed:

{"_id":"oracle-v3","startUrl":["https://solutions.oracle.com/scwar/scr/Partners/index.html?logout=true"],"selectors":[{"id":"Click Business","type":"SelectorElementClick","parentSelectors":["_root"],"selector":"ul.filters","multiple":false,"delay":"3000","clickElementSelector":"a#speciality_areas","clickType":"clickOnce","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueText"},{"id":"Click SaaS","type":"SelectorElementClick","parentSelectors":["Click Business"],"selector":"a[scfilter='xscCEI:All']","multiple":false,"delay":"4500","clickElementSelector":"a[scfilter='xscCEI:All']","clickType":"clickOnce","discardInitialElements":"do-not-discard","clickElementUniquenessType":"uniqueText"},{"id":"rows","type":"SelectorElement","parentSelectors":["_root"],"selector":"li.dummyClass","multiple":true,"delay":0},{"id":"company","type":"SelectorText","parentSelectors":["rows"],"selector":"span","multiple":false,"regex":"","delay":0},{"id":"get_link-attribute","type":"SelectorElementAttribute","parentSelectors":["rows"],"selector":"_parent_","multiple":false,"extractAttribute":"onclick","delay":0}]}