31-05-22 12:13 PM
31-05-22 12:40 PM
function writeText(searchText){
document.getElementsByName("q")[0].value = searchText;
document.getElementsByName("btnK")[0].click();
}
writeText("Blue Prism")
Now in order to execute both these functions one by one I have used one Navigate Stage and have used the action "Insert Javascript Fragment" twice. The first time I am inserting the "Insert JS Fragment" data item and the next time I and again using the same action for inserting the "Invoke JS Fragment" data item.function_name()
which in my case was writeText("Blue Prism")
01-06-22 07:04 AM
06-06-22 12:59 PM
The main issue was while performing click or press operation through blueprism the navigation stage is passing without performing the click action. So for this reason I thought of invoking java script. As Neeraj mentioned, invoking js no longer work after manifest V3, I would request you to suggest any other solution to resolve the issue.
06-06-22 01:22 PM