I need assistance in extracting a specific value from a multi-value cookie using the Selenium IDE. The cookie's Tracking Cookie Value is as follows: G=1&GS=2&UXD=MY8675309=&CC=234&SC=3535&CIC=2724624
Currently, I have stored the entire cookie in a Selenium variable using the StoreCookieByName command:
storeCookieByName Tracking Tracking
However, my goal is to extract a particular sub-element of the cookie for testing purposes - specifically, the UXD value of MY8675309.
I attempted to use Javascript for parsing, but have been unsuccessful with both this method and the StoreCookieByName function.
If anyone can provide guidance on how to achieve this, it would be greatly appreciated.