File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ public void MouseOverAndMouseOut_CanTrigger()
73
73
var output = Browser . Exists ( By . Id ( "output" ) ) ;
74
74
Assert . Equal ( string . Empty , output . Text ) ;
75
75
76
- var other = Browser . Exists ( By . Id ( "other " ) ) ;
76
+ var other = Browser . Exists ( By . Id ( "mouseover_label " ) ) ;
77
77
78
78
// Mouse over the button and then back off
79
79
var actions = new Actions ( Browser )
@@ -155,8 +155,6 @@ public void MouseDownAndMouseUp_CanTrigger()
155
155
var output = Browser . Exists ( By . Id ( "output" ) ) ;
156
156
Assert . Equal ( string . Empty , output . Text ) ;
157
157
158
- var other = Browser . Exists ( By . Id ( "other" ) ) ;
159
-
160
158
// Mousedown
161
159
var actions = new Actions ( Browser ) . ClickAndHold ( input ) ;
162
160
Original file line number Diff line number Diff line change 7
7
Output: <span id =" output" >@message </span >
8
8
</p >
9
9
<p >
10
- Mouseover: <input id =" mouseover_input" type =" text" @onmouseover =" OnMouseEvent" @onmouseout =" OnMouseEvent" />
10
+ @* We use the label here as a target for the "mouseout" event *@
11
+ <span id =" mouseover_label" >Mouseover:</span > <input id =" mouseover_input" type =" text" @onmouseover =" OnMouseEvent" @onmouseout =" OnMouseEvent" />
11
12
</p >
12
13
<p >
13
14
Mouseenter: <input id =" mouseenter_input" type =" text" @onmouseenter =" OnMouseEvent" @onmouseleave =" OnMouseEvent" />
You can’t perform that action at this time.
0 commit comments