Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Spelling error #663

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/UIItems.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ For managed applications:
Button button = window.Get<Button>("OK"); //default search mechanism is by UIAutomation name
button = window.Get<Button>(SearchCriteria.ByText("OK")); // same as above

2. **UIItem** type (e.g. Button, ComoboBox)
2. **UIItem** type (e.g. Button, ComboBox)

Button button = window.Get<Button>("btnOK"); //<Button> acts as criteria as well as the return type
button = (Button) window.Get(SearchCriteria.ByAutomationId("btnOK").AndControlType(typeof(Button))); // same as above
Expand Down Expand Up @@ -238,4 +238,4 @@ Since GroupBox and Panel extend from UIItemContainer one can retrieve items from
}
}

It is recommended you create an abstraction for your expander. Since its structure is not a standard, white cannot provide the same.
It is recommended you create an abstraction for your expander. Since its structure is not a standard, white cannot provide the same.