Hi Team,
I have a basic question. From uipath i am calling a html file in that i have a text field to accept name and submit button. I type a text in the name field and click submit.
function OnSelect()
{
var Name= document.getElementById(“Name”).value;
window.external.setResult(Name);
return true;
}
How to get this value(Name) inside uipath?