For RPA, I am trying to use Javascript to set a value in dropdown (A) which will enable dropdown(B). I can set the value of the dropdown (A), however it doesn't enable dropdown (B).
Is there something else I need to do, for it to recognize that I set the value in dropdown (A) and it should enable dropdown (B)?
Here is what I am using to set the value in dropdown (A):
function ExecuteScript()
{
document.querySelector('selector').value="value";
}