Details
Description
Use e4 as AUT.
Use the attached test case and try to re-capture it.
Test will be captured as:
get-view "Package Explorer" | get-tree | select "PluginProject/CatDef2.xml" | double-click with [get-editor "CatDef2.xml"] { get-section "Managing the Categories" | get-tree | select category2 with [get-section "Category Properties" | get-editbox -after [get-label "Name*:"]] { set-text "category2_new" key-type "M1+s" } close } .......
And fails to be replayed.
When you place key-type M1+s outside '}' it passes:
with [get-section "Category Properties" | get-editbox -after [get-label "Name*:"]] { set-text "category2_new" } key-type "M1+s" close } ....