How to scrap this website with element click please

I tried doing a sitemap starting with element click with those dropdown selections.
But I could not find the actual [selected] to scrap the color name, please

Url: https://srcthailand.com/product/crash-bar-for-honda-cb500x/?v=6b4089067750

Sitemap:
{"_id":"srcthailand","startUrl":["https://srcthailand.com/product/crash-bar-for-honda-cb500x/?v=6b4089067750"],"selectors":[{"clickActionType":"real","clickElementSelector":"td select option","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickOnce","delay":1000,"discardInitialElements":"do-not-discard","id":"wrapper","multiple":true,"parentSelectors":["_root"],"selector":"body","type":"SelectorElementClick"}]}

Hi, you were missing the selector one level deeper to display the actual selected color. You can refer to the sitemap below

{"_id":"srcthailand","startUrl":["https://srcthailand.com/product/crash-bar-for-honda-cb500x/?v=6b4089067750"],"selectors":[{"id":"colors","multiple":false,"parentSelectors":["color-selector"],"regex":"","selector":"#pa_color option:selected","type":"SelectorText"},{"clickActionType":"real","clickElementSelector":"#pa_color option:not(:contains(\"Choose an option\"))","clickElementUniquenessType":"uniqueCSSSelector","clickType":"clickOnce","delay":1000,"discardInitialElements":"discard-when-click-element-exists","id":"color-selector","multiple":true,"parentSelectors":["_root"],"selector":"body","type":"SelectorElementClick"}]}

Thank you very much!