Below is the element description:
<div class="css-control-textinput-122aa"><input type="text" aria-required="true" disabled="" required=""</div>
In the above class is having name css-control-textinput-122aa, but here 122aa is not fixed value, it gets changed. So how do I find the element using className starting with css-control-textinput only?
Below the code I tried, but it's not working:
@FindBy (className = "css-fauxcontrol-textinput-^")
List<WebElement> dataSourceName;