cancel
Showing results for 
Search instead for 
Did you mean: 

how to lost focus / change focus on the website

ZelinShen
Level 3
As see in the picture, some column are mandatory in the website, but after I filled all the column by blueprism and press submit, the column still show the alert said I didn't fill, could anyone can help me ? thank you very much !
2 REPLIES 2

John__Carter
Staff
Staff
The field probably has some event handler that is expecting human input, ie keyboard and mouse. The Write stage does not use the keyboard and the event handler cannot 'hear' the input. This is why the web app 'thinks' you have not entered any data. Try using Send Keys or Global Send Keys or Global Send Key Events in a Navigate stage instead of a Write stage. It may also be possible to use a Write stage and a mouse click to focus the field and 'wake up' the event handler.

sure, actually I use the Navigate stage, and I tried to use the global send keys with ""{TAB}"", but it didn't trigger to another column. As you know, when you are in a website, and tag TAB, it will go to another column, right ? thank you for the help.