# HG changeset patch # User Claus Gittinger # Date 1563542151 -7200 # Node ID e709d40e6bc9fab470afb4b65451374cb1665e96 # Parent f0fad0548be930bf7329475bb51f79220b656100 #FEATURE by cg class: MethodFinderWindow changed: #showMeHowItWorks class: MethodFinderWindow class changed: #windowSpec diff -r f0fad0548be9 -r e709d40e6bc9 MethodFinderWindow.st --- a/MethodFinderWindow.st Fri Jul 19 15:15:24 2019 +0200 +++ b/MethodFinderWindow.st Fri Jul 19 15:15:51 2019 +0200 @@ -398,7 +398,7 @@ collection: ( (ActionButtonSpec label: 'Clear' - name: 'Button2' + name: 'ClearButton' layout: (LayoutFrame 5 0 0 0 -5 0.5 0 1) activeHelpKey: clearButton uuid: '5fb0f214-89f6-11e9-8df0-b8f6b1108e05' @@ -407,7 +407,7 @@ ) (ActionButtonSpec label: 'Search' - name: 'Button1' + name: 'SearchButton' layout: (LayoutFrame 5 0.5 0 0 -5 1 0 1) activeHelpKey: startSearchButton uuid: '5fb0f52a-89f6-11e9-8df0-b8f6b1108e05' @@ -438,14 +438,14 @@ collection: ( (LabelSpec label: 'Selector Pattern:' - name: 'Label1' + name: 'SelectorPatternLabel' layout: (LayoutFrame 0 0 0 0 0 1 25 0) uuid: '5fb0f908-89f6-11e9-8df0-b8f6b1108e05' translateLabel: true adjust: left ) (InputFieldSpec - name: 'EntryField1' + name: 'SelectorPattern' layout: (LayoutFrame 2 0 -54 1 -2 1 -29 1) activeHelpKey: selectorPattern uuid: '5fb0fa70-89f6-11e9-8df0-b8f6b1108e05' @@ -457,7 +457,7 @@ ) (ActionButtonSpec label: 'Search' - name: 'Button4' + name: 'SearchPatternButton' layout: (LayoutFrame 5 0.5 -25 1 -5 1 0 1) activeHelpKey: startSearchPatternButton uuid: '5fb0fea8-89f6-11e9-8df0-b8f6b1108e05' @@ -546,6 +546,8 @@ ) ) + + "Modified: / 19-07-2019 / 15:08:46 / Claus Gittinger" ! windowSpec_old @@ -1784,21 +1786,37 @@ moveTo: ReceiverEditor click: ReceiverEditor )) + wait: 0.5 (showing: 'Enter a value (or expression) into "receiver" field' do:( - enter: '100' + enter: '10' )) + wait: 0.5 (showing: 'Click into the "first argument" field' do:( moveTo: Arg1Editor - click: ReceiverEditor + click: Arg1Editor + )) + wait: 0.5 + (showing: 'and enter a value for the argument' do:( + enter: '1' )) - (showing: 'Enter a value (or expression) into "receiver" field' do:( - enter: '100' + wait: 0.5 + (showing: 'Click into the "answer" field' do:( + moveTo: AnswerEditor + click: AnswerEditor + )) + (showing: 'Enter the expected result value into the "answer" field' do:( + enter: '101' + )) + wait: 0.5 + (showing: 'now, Click on the "search" button' do:( + moveTo: SearchButton + click: SearchButton )) ) "Created: / 18-07-2019 / 21:59:06 / Claus Gittinger" - "Modified: / 19-07-2019 / 14:20:41 / Claus Gittinger" + "Modified: / 19-07-2019 / 15:09:07 / Claus Gittinger" ! ! !MethodFinderWindow methodsFor:'private'!