Skip to content

Commit 4216b87

Browse files
committed
fix incorrect slashes <> signs
1 parent aee7580 commit 4216b87

File tree

8 files changed

+27
-27
lines changed

8 files changed

+27
-27
lines changed

docs-teststudiodev/code-in-test/settings-and-configuration-wtc/settings-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ This table lists all of the WebAii framework settings that are available for you
171171
<td>"InternetExplorer"<br>
172172
"FireFox"<br>
173173
"AspNetHost"<br>
174-
"Safari"h</td>
174+
"Safari"</td>
175175
<td>"InternetExplorer"</td>
176176
</tr>
177177
<tr>
@@ -267,7 +267,7 @@ This table lists all of the WebAii framework settings that are available for you
267267
**LogLocation**</td>
268268
<td>Location where all logging will be performed, both captured bitmaps and WebAii's log file.</td>
269269
<td>Any valid URI.</td>
270-
<td>C:\WebAiiLog\</td>
270+
<td>C:\WebAiiLog
271271
</tr>
272272
<tr>
273273
<td>

docs-teststudiodev/code-in-test/silverlight-wpf-automation-wtc/locating-elements.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -47,16 +47,16 @@ All of the common methods for finding an element to operate on are:
4747
<th>Method</th><th>Description</th>
4848
</tr>
4949
<tr>
50-
<td><code>&lt;Find.ByName()&gt;</code>/<code>Find.ByName&lt;T&gt;</code></td><td>Returns the first element having the specified name.</td>
50+
<td><code>Find.ByName()</code>/<code>Find.ByName&lt;T&gt;()</code></td><td>Returns the first element having the specified name.</td>
5151
</tr>
5252
<tr>
53-
<td><code>&lt;Find.ByText&gt;</code></td><td>Returns the first TextBlock that matches the text provided.</td>
53+
<td><code>Find.ByText()</code></td><td>Returns the first TextBlock that matches the text provided.</td>
5454
</tr>
5555
<tr>
56-
<td><code>&lt;Find.ByAutomationId&gt;</code></td><td>Returns an element having the automation ID you specify.</td>
56+
<td><code>Find.ByAutomationId()</code></td><td>Returns an element having the automation ID you specify.</td>
5757
</tr>
5858
<tr>
59-
<td><code>&lt;Find.ByType&gt;</code></td><td>Returns the first element found of the specified type (e.g. Canvas, DataGrid, Calendar).</td>
59+
<td><code>Find.ByType()</code></td><td>Returns the first element found of the specified type (e.g. Canvas, DataGrid, Calendar).</td>
6060
</tr>
6161
</table>
6262

@@ -103,16 +103,16 @@ All of the `Find.AllByxxx` functions are:
103103
<th>Method</th><th>Description</th>
104104
</tr>
105105
<tr>
106-
<td><code>&lt;Find.AllByName()&gt;</code>/<code>Find.AllByName&lt;T&gt;</code></td><td>Find all elements that have a specific name. Allows filtering on a specific control type.</td>
106+
<td><code>Find.AllByName()</code>/<code>Find.AllByName&lt;T&gt;</code></td><td>Find all elements that have a specific name. Allows filtering on a specific control type.</td>
107107
</tr>
108108
<tr>
109-
<td><code>&lt;Find.AllByText()&gt;</code></td><td>Find all TextBlocks that contain a specific text. Use p:text to search for partial text.</td>
109+
<td><code>Find.AllByText()</code></td><td>Find all TextBlocks that contain a specific text. Use p:text to search for partial text.</td>
110110
</tr>
111111
<tr>
112-
<td><code>&lt;Find.AllByType()&gt;</code>/<code>Find.AllByType&lt;T&gt;</code></td><td>Find all elements of certain type. i.e Button, Grid..etc. Filtering on type is inherit here.</td>
112+
<td><code>Find.AllByType()</code>/<code>Find.AllByType&lt;T&gt;</code></td><td>Find all elements of certain type. i.e Button, Grid..etc. Filtering on type is inherit here.</td>
113113
</tr>
114114
<tr>
115-
<td><code>&lt;Find.AllByAutomationID(&gt;</code>/<code>Find.AllByAutomationID&lt;T&gt;</code>)</td><td>Find all elements that have a specific automation ID. Allows filtering on a specific control type.</td>
115+
<td><code>Find.AllByAutomationID()</code>/<code>Find.AllByAutomationID&lt;T&gt;()</code></td><td>Find all elements that have a specific automation ID. Allows filtering on a specific control type.</td>
116116
</tr>
117117
</table>
118118

docs/automated-tests/elements/element-repository.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ Since this file is automatically generated, it should not be checked into your s
3434

3535
### How is the Element Repository used during test execution?
3636

37-
When you look at the elements being displayed in the Elements Explorer pane, you will see them in a tree structure. At the root is the web page from which they were recorded. Under that may be a Frame node if the element was contained on the source page that an \<iframe> element references, and/or a Silverlight node if it was recorded from a Silverlight application.
37+
When you look at the elements being displayed in the Elements Explorer pane, you will see them in a tree structure. At the root is the web page from which they were recorded. Under that may be a Frame node if the element was contained on the source page that an `<iframe>` element references, and/or a Silverlight node if it was recorded from a Silverlight application.
3838

3939
During test execution, the root Page node is not actually used to locate the element. The execution engine only uses the Frame, Silverlight nodes, and the element's Find Expression to locate the correct element to interact with during any test step. This allows the test to continue to work when you need to test in a different testing environment (e.g. a Development server, then a Staging server, then a Production server).

docs/testing-framework/write-tests-in-code/advanced-topics-wtc/asp-net-host-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Many of our customers have asked for a way to execute tests without the need for
1818

1919
* If you are using NUnit 2.4 or higher you might experience AppDomainUnloadException similar to the issue described here. To work around this issue, please set the configuration setting legacyUnhandledExceptionPolicy to '0' in nunit.exe.config file.
2020

21-
\<legacyUnhandledExceptionPolicy enabled="0" />
21+
`<legacyUnhandledExceptionPolicy enabled="0" />`
2222

2323
With all these in mind, let's look at an example that illustrates how we can enable our tests to run against the Asp.Net inproc host. Here is a simply Asp.Net page that utilizes several Asp.Net controls:
2424

docs/testing-framework/write-tests-in-code/intermediate-topics-wtc/settings-and-configuration-wtc/settings-class.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ This table lists all of the WebAii framework settings that are available for you
157157
<td>"InternetExplorer"<br>
158158
"FireFox"<br>
159159
"AspNetHost"<br>
160-
"Safari"h</td>
160+
"Safari"</td>
161161
<td>"InternetExplorer"</td>
162162
</tr>
163163
<tr>
@@ -231,7 +231,7 @@ This table lists all of the WebAii framework settings that are available for you
231231
<td><strong>LogLocation</strong></td>
232232
<td>Location where all logging will be performed, both captured bitmaps and WebAii's log file.</td>
233233
<td>Any valid URI.</td>
234-
<td>C:\WebAiiLog\</td>
234+
<td>C:\WebAiiLog</td>
235235
</tr>
236236
<tr>
237237
<td><strong>QueryEventLogErrorsOnExit</strong></td>

docs/testing-framework/write-tests-in-code/silverlight-wpf-automation-wtc/invoking-actions.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -171,16 +171,16 @@ The FrameworkElement class implements a number of methods just for purpose of te
171171
<td><code>CastAs&lt;T&gt;()</code></td><td>Returns a FrameworkElement as a strongly-typed control. Does not enforce a tagname to match the type.</td>
172172
</tr>
173173
<tr>
174-
<td><code>&lt;GetChildren()&gt;</code></td>Returns the child elements of the FrameworkElement.</td>
174+
<td><code>GetChildren()</code></td>Returns the child elements of the FrameworkElement.</td>
175175
</tr>
176176
<tr>
177-
<td><code>&lt;GetNextSibling()&gt;</code></td><td>Returns the next sibling of the FrameworkElement.</td>
177+
<td><code>GetNextSibling()</code></td><td>Returns the next sibling of the FrameworkElement.</td>
178178
</tr>
179179
<tr>
180-
<td><code>&lt;Parent()&gt;</code></td><td>Returns the parent element of the current Framework Element</td>
180+
<td><code>Parent()</code></td><td>Returns the parent element of the current Framework Element</td>
181181
</tr>
182182
<tr>
183-
<td><code>&lt;ScrollToVisible()&gt;</code></td><td>Scrolls the browser so that the Framework Element is visible.</td>
183+
<td><code>ScrollToVisible()</code></td><td>Scrolls the browser so that the Framework Element is visible.</td>
184184
</tr>
185185
</table>
186186

docs/testing-framework/write-tests-in-code/silverlight-wpf-automation-wtc/locating-elements.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -47,16 +47,16 @@ All of the common methods for finding an element to operate on are:
4747
<th>Method</th><th>Description</th>
4848
</tr>
4949
<tr>
50-
<td><code>&lt;Find.ByName()&gt;</code>/<code>Find.ByName&lt;T&gt;</code></td><td>Returns the first element having the specified name.</td>
50+
<td><code>Find.ByName()</code>/<code>Find.ByName&lt;T&gt;</code></td><td>Returns the first element having the specified name.</td>
5151
</tr>
5252
<tr>
53-
<td><code>&lt;Find.ByText&gt;</code></td><td>Returns the first TextBlock that matches the text provided.</td>
53+
<td><code>Find.ByText</code></td><td>Returns the first TextBlock that matches the text provided.</td>
5454
</tr>
5555
<tr>
56-
<td><code>&lt;Find.ByAutomationId&gt;</code></td><td>Returns an element having the automation ID you specify.</td>
56+
<td><code>Find.ByAutomationId</code></td><td>Returns an element having the automation ID you specify.</td>
5757
</tr>
5858
<tr>
59-
<td><code>&lt;Find.ByType&gt;</code></td><td>Returns the first element found of the specified type (e.g. Canvas, DataGrid, Calendar).</td>
59+
<td><code>Find.ByType</code></td><td>Returns the first element found of the specified type (e.g. Canvas, DataGrid, Calendar).</td>
6060
</tr>
6161
</table>
6262

@@ -103,16 +103,16 @@ All of the `Find.AllByxxx` functions are:
103103
<th>Method</th><th>Description</th>
104104
</tr>
105105
<tr>
106-
<td><code>&lt;Find.AllByName()&gt;</code>/<code>Find.AllByName&lt;T&gt;</code></td><td>Find all elements that have a specific name. Allows filtering on a specific control type.</td>
106+
<td><code>Find.AllByName()</code>/<code>Find.AllByName&lt;T&gt;()</code></td><td>Find all elements that have a specific name. Allows filtering on a specific control type.</td>
107107
</tr>
108108
<tr>
109-
<td><code>&lt;Find.AllByText()&gt;</code></td><td>Find all TextBlocks that contain a specific text. Use p:text to search for partial text.</td>
109+
<td><code>Find.AllByText()</code></td><td>Find all TextBlocks that contain a specific text. Use p:text to search for partial text.</td>
110110
</tr>
111111
<tr>
112-
<td><code>&lt;Find.AllByType()&gt;</code>/<code>Find.AllByType&lt;T&gt;</code></td><td>Find all elements of certain type. i.e Button, Grid..etc. Filtering on type is inherit here.</td>
112+
<td><code>Find.AllByType()</code>/<code>Find.AllByType&lt;T&gt;</code></td><td>Find all elements of certain type. i.e Button, Grid..etc. Filtering on type is inherit here.</td>
113113
</tr>
114114
<tr>
115-
<td><code>&lt;Find.AllByAutomationID(&gt;</code>/<code>Find.AllByAutomationID&lt;T&gt;</code>)</td><td>Find all elements that have a specific automation ID. Allows filtering on a specific control type.</td>
115+
<td><code>Find.AllByAutomationID()</code>/<code>Find.AllByAutomationID&lt;T&gt;()</code></td><td>Find all elements that have a specific automation ID. Allows filtering on a specific control type.</td>
116116
</tr>
117117
</table>
118118

docs/testing-framework/write-tests-in-code/silverlight-wpf-automation-wtc/silverlight-ui-automation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ Let's take a closer look at the code above line by line:
8787

8888
`app.FindName<TextBox>("myName").User.TypeText("Telerik", 50);`
8989

90-
* Line 20 (`app.FindName\<Button>("myBtn").User.Click();`)
90+
* Line 20 (`app.FindName<Button>("myBtn").User.Click();`)
9191

9292
Same as above in terms of accessing the button. The difference here is that we are using the '**User**' object to click the button. The **User** object is present on all elements that inherit from **FrameworkElement** and offers real user interactions with Silverlight elements. So a click using the 'User' object will actually move the mouse over that button and click it. That is exactly what this line does.
9393

0 commit comments

Comments
 (0)