简体   繁体   中英

Blue Prism: On entering a text in a text box, the adjacent button is not getting enabled

I am automating an enterprise application using Blue Prism, On entering a text in a particular text box, the button next to it should be enabled as per the process document which is happening when I do it manually. However, When I use write stage and enter the text its not happening.

I tried using navigate stage to click on the center of Textbox and used Application modeler to send keys within the same navigate stage.

Is there any way to achieve what I want?

Some elements are disabled until and unless user key strokes on one element. If you use write stage then it won't be get enabled.

For this, use the Global send key event to pass the value to text box only then the button will get enabled.

Give Global send key event the text parameter, while writing text to textbox it will generate key events.

  Navigation Stage --> GlobalSendKeyEvents -->"{TAB}")

The app is probably waiting for a Javascript callback to tell the button it should be enabled. After youve set the data (probably with global send keys), I'd first recommend tabbing out of it, or clicking some other element on the page. Expirement with different combinations of Focus, Tab, Activate, Click, etc, until you get lucky. Or, you can just look at the js and see if you can figure it out.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM