I am currently attempting to verify an element to determine whether the checkbox is checked or not. Please refer to the image provided below:
https://i.sstatic.net/bACOS.png
Here is the DOM structure required to target this specific element:
<pds-radio class data-v-1234bb3c model="singleSelection" checked>
#shadow-root (open)
<div class="wrapper">
<div class="radio-wrapper">
<div class="radio-container">
<div class="radio active" tabindex="0">
::before
Upon clicking on the element, the 'checked' attribute appears in the 'pds-radio' and within the shadow, the class changes to class="radio active" if checked, or class="radio" if unchecked.
Your assistance with this would be greatly appreciated. Thank you.