Skip to content

Commit 75047ed

Browse files
committed
fix header markdown
there was no empty space after the # symbol and the headers were not rendered properly. I added an empty space and also trimmed any # at the end of the headers.
1 parent 223a1e8 commit 75047ed

File tree

2 files changed

+19
-32
lines changed

2 files changed

+19
-32
lines changed

Diff for: docs/docs-builder.yml

+1-16
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,8 @@ path-prefix: /teststudio
33
product-id: 846
44
product-name: Progress Test Studio
55
product-url: https://www.telerik.com/teststudio
6-
<<<<<<< HEAD
76
search-engine-id: 001595215763381649090:ymztq4og6vc
8-
cta-overview: "@ProductLink is a test automation platform for web, WPF, and responsive web applications, supporting UI, functional, load, and RESTful API testing. Sign up for a free 30-day trial!"
9-
=======
10-
search-engine-id: 8ac1ab64606d234f1
11-
cta-overview: "@ProductLinkis a UI test automation platform that helps QA and Engineering teams build stable and easily maintainable automated tests. Sign up for a free 30-day trial!"
12-
>>>>>>> 1d96aff (Add docs-builder configuration file)
7+
cta-overview: "@ProductLink is a UI test automation platform that helps QA and Engineering teams build stable and easily maintainable automated tests. Sign up for a free 30-day trial!"
138
cta-intro: "@ProductLink is a test automation platform for web, WPF, and responsive web applications, supporting UI, functional, load, and RESTful API testing. Sign up for a free 30-day trial!"
149
default-title-prefix: Telerik Test Studio
1510
avatar-path: ./images/avatar-ninja.svg
@@ -60,19 +55,9 @@ meta:
6055
faq:
6156
title: "FAQ"
6257
position: 15
63-
<<<<<<< HEAD
6458
license-server:
6559
title: "License Server"
6660
position: 16
67-
=======
68-
archived-docs:
69-
title: "Archived Docs"
70-
position: 16
71-
hidden: true
72-
license-server:
73-
title: "License Server"
74-
position: 17
75-
>>>>>>> 1d96aff (Add docs-builder configuration file)
7661
hidden: true
7762
api:
7863
title: "API Reference"

Diff for: docs/testing-framework/write-tests-in-code/advanced-topics-wtc/html-popups-and-dialogs-wtc/firefox-dialogs.md

+18-16
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@ page_title: Firefox Dialogs
44
description: "Test Studio Testing Framework FF dialogs - obsolete"
55
position: 1
66
published: false
7+
published: false
78
---
89
# How to Handle Firefox Dialogs
10+
# How to Handle Firefox Dialogs
911

1012
Firefox dialogs require special attention because some of them are not standard Win32 dialogs, for example Firefox's download manager dialog. As a result the usual method for handing dialogs does not work with Firefox dialogs. Here is what the download manager dialog looks like:
1113

@@ -143,16 +145,16 @@ Public Class FFDownloadsDialog
143145
' Semaphore used by the WaitUntilHandled function.
144146
' </summary>
145147
Private _autoEvent As AutoResetEvent = New AutoResetEvent(False)
146-
# End Region
148+
#End Region
147149

148-
# Region "Private Constants"
150+
#Region "Private Constants"
149151
' <summary>
150152
' The title of the dialog we want handled.
151153
' </summary>
152154
Private Const DIALOG_TITLE As String = "Downloads"
153-
# End Region
155+
#End Region
154156

155-
# Region "Properties"
157+
#Region "Properties"
156158
' <summary>
157159
' Gets the Window object of the dialog being handled.
158160
' </summary>
@@ -203,37 +205,37 @@ Public Class FFDownloadsDialog
203205
Me._currentState = value
204206
End Set
205207
End Property
206-
# End Region
207-
````
208+
#End Region
209+
```
208210

209211

210212
So far everything is very simple and straightforward. Now that the local variables and properties are complete, it's time to implement the constructor. Since all we're going to do to handle the dialog is close it, we don't require the Desktop or DialogButton parameter that standard Win32 dialog handlers require:
211213

212-
````C#
213-
# region Constructor
214+
```C#
215+
#region Constructor
214216
/// <summary>
215217
/// Create the dialog.
216218
/// </summary>
217219
public FFDownloadsDialog()
218220
{
219221
}
220-
# endregion
221-
````
222-
````VB
223-
# Region "Constructor"
222+
#endregion
223+
```
224+
```VB
225+
#Region "Constructor"
224226
' <summary>
225227
' Create the dialog handler instance.
226228
' </summary>
227229
Public Sub New()
228230
MyBase.New()
229231
End Sub
230-
# End Region
231-
````
232+
#End Region
233+
```
232234

233235
Since there's nothing to the constructor, we could optionally leave it out and let the default constructor take over. So let's start implementing the IDialog methods starting with IsDialogActive.
234236

235-
````C#
236-
# region IDialog Members
237+
```C#
238+
#region IDialog Members
237239
/// <summary>
238240
/// Check whether the dialog is present or not. This function is
239241
/// called by the DialogMonitor object.

0 commit comments

Comments
 (0)