Skip to content

Commit

Permalink
Fixed a TextBox test
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake Ginnivan committed Feb 6, 2013
1 parent eb1bc63 commit 2b0b41a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/TestStack.White.UITests.Old/UIItems/TextBoxTest.cs
Expand Up @@ -39,11 +39,10 @@ public void EnterBulkText()
[Test]
public void CopyTest()
{
textBox.Text = "userText";
textBox.DoubleClick();

AttachedKeyboard attachedKeyboard = window.Keyboard;
textBox.Text = "userText";
attachedKeyboard.HoldKey(KeyboardInput.SpecialKeys.CONTROL);
attachedKeyboard.Enter("a");
attachedKeyboard.Enter("c");
attachedKeyboard.LeaveKey(KeyboardInput.SpecialKeys.CONTROL);

Expand Down

0 comments on commit 2b0b41a

Please sign in to comment.