Handling multiple html combo boxes in BluePrism

2019-08-01 06:37发布

On a web page there are two html combo boxes, value in the second combo box depends on the values selected in first combo. When I do this manually it works, but with BluePrism on selecting value in first box the values in second combo box doesn't load.

标签: blueprism rpa
4条回答
疯言疯语
2楼-- · 2019-08-01 06:54

When you spy the element of same type just like combo box or text box you, please select the appropriate attribute from modeler window. In this case you can able to select the attribute "ordinal" and "match index".

If you check ordinal value will different for each combo box.

查看更多
趁早两清
3楼-- · 2019-08-01 07:05

I think that it be so, that when you're using blueprism "select item" action instead of >clicking using mouse, then some javascript code must not be executed.

Yes, this is the right answer. Also, some combo box will check your manipulation. If your manipulation is more robot-like, it would not invoke the javascript code. You may need to use "invoke javascript function" in navigating stage or you can just use "global send keys" to send keystroke and make you manipulation more human-like.

查看更多
做自己的国王
4楼-- · 2019-08-01 07:14

Is it something like, if I choose first option in ComboBox1 then in ComboBox2 there will be automaticly chossen option 2? Is it allways the same conection?

If so, choose ComboBox 1, then make a descision step: IF CoboBox1 IS 1 THEN...

If not, then after you choose ComboBox 1, you may wish to read value of that ComboBox and then choose the value of the other.

Hope it helps.

查看更多
戒情不戒烟
5楼-- · 2019-08-01 07:16

I think that it be so, that when you're using blueprism "select item" action instead of clicking using mouse, then some javascript code must not be executed.

I'd try to investigate a page that you're automating. I'd search for the javascript code that is being executed when using mouse and try to call that method from BluePrism object.

查看更多
登录 后发表回答