Bug 465180 - Click on the second column (after click on the first) in nebula grid is recorded as click on the first one
Summary: Click on the second column (after click on the first) in nebula grid is recor...
Status: UNCONFIRMED
Alias: None
Product: RCPTT
Classification: Technology
Component: ECL (show other bugs)
Version: 1.5.6   Edit
Hardware: PC Mac OS X
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Project Inbox CLA
QA Contact:
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-04-22 06:48 EDT by Olga Yurchuk CLA
Modified: 2015-04-22 06:48 EDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Olga Yurchuk CLA 2015-04-22 06:48:26 EDT
Steps:
Start recording
Select the first cell in nebula grid
Select the second cell in nebula grid
Save the result

The generated code is:
get-view Properties | get-button -after [get-label "Choice list"] | click
with [get-window "Choice List"] {
    with [get-nebula-grid] {
        select "" | activate-cell-edit
        with [get-editbox] {
            type-text 11111
        }
        select "" | apply-cell-edit -deactivate
        select 11111 | activate-cell-edit // the key "-column 1" should be there
        get-editbox | type-text 22222
    }
    get-button OK | click
    get-nebula-grid | apply-cell-edit -deactivate
}