We have a web app built in ReactJS and Chakra UI. Normally, we'd use Target to modify or manipulate elements in the DOM:
- <div class="this-is-easy-to-target">Hello</div>
but Chakra classnames and styles are all generated on the fly, so they won't always be the same:
- <div class="chakra-css-675Fhd9">Hello</div>
We could use other selectors, but it's quite complicated and would like a more robust way of running A/B tests on this platform. I guess I'm asking for some advice on how we can use Target to run AB and MVT tests on a REACTJS platform I think using JSON format?!
Can anyone provide either some thoughts, links etc?
Thankyou!!