-
Notifications
You must be signed in to change notification settings - Fork 23
/
wd_capabilities.au3
389 lines (346 loc) · 20.3 KB
/
wd_capabilities.au3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
#include-once
; standard UDF's
#include <Array.au3>
#include <MsgBoxConstants.au3>
; WebDriver related UDF's
#include "JSON.au3" ; https://www.autoitscript.com/forum/topic/148114-a-non-strict-json-udf-jsmn
#include "wd_core.au3"
#Tidy_Parameters=/tcb=-1
#Region wd_capabilities.au3 - UDF Header
; #INDEX# ========================================================================
; Title .........: wd_capabilities.au3
; AutoIt Version : v3.3.14.5
; Language ......: English
; Description ...: A collection of functions used to dynamically build the Capabilities string (JSON formatted) required to create a WebDriver session
; Author ........: mLipok
; Modified ......: Danp2
; URL ...........: https://www.autoitscript.com/wiki/WebDriver_Capabilities
; Date ..........: 2022/07/27
; ================================================================================
#Region - wd_capabilities.au3 - Copyright
#CS
* wd_capabilities.au3
*
* MIT License
*
* Copyright (c) 2023 Michał Lipok - @mLipok
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
#CE
#EndRegion - wd_capabilities.au3 - Copyright
#Region - wd_capabilities.au3 - thanks, remarks, comments
#CS
; Author(s) .....: Michał Lipok - @mLipok
; AutoIt Version : v3.3.14.5
- Jonathan Bennett and the AutoIt Team https://www.autoitscript.com/forum/staff/
- Dan Pollak (@Danp2) for all his work on https://github.com/Danp2/WebDriver/
- @trancexx for https://github.com/dragana-r/autoit-winhttp and https://www.autoitscript.com/forum/topic/84133-winhttp-functions/
- @Ward for https://www.autoitscript.com/forum/topic/148114-a-non-strict-json-udf-jsmn
wd_capabilities.au3 UDF was originally designed by Michał Lipok : https://www.autoitscript.com/forum/topic/206576-wd_capabilitiesau3-support-topic-early-beta-version-work-in-progress/
By mutual consent (@mLipok + @Danp2) for the sake of the entire project, it was decided that: first official release will be published on https://github.com/Danp2/au3WebDriver/
Future project management will remain in the hands of @Danp2
@mLipok will remain an active contributor to this project
#CE
#EndRegion - wd_capabilities.au3 - thanks, remarks, comments
#Region - wd_capabilities.au3 - function list
#CS
Core functions:
_WD_CapabilitiesStartup()
_WD_CapabilitiesAdd()
_WD_CapabilitiesGet()
Internal functions:
__WD_CapabilitiesNotation()
Helper Functions:
_WD_CapabilitiesDump()
_WD_CapabilitiesDefine()
#CE
#EndRegion - wd_capabilities.au3 - function list
#EndRegion wd_capabilities.au3 - UDF Header
#Region - wd_capabilities.au3 UDF - Global's declarations
Global $_WD_CAPS__OBJECT
Global $_WD_NOTATION__MATCHTYPE = ''
Global $_WD_NOTATION__SPECIFICVENDOR = ''
; $_WD_KEYS__MATCHTYPES should be RegExpPattern of possible "Match Types"
Global Const $_WD_KEYS__MATCHTYPES = _
'\A(alwaysMatch|firstMatch)\Z'
; $_WD_KEYS__STANDARD_PRIMITIVE should be RegExpPattern of "JSON_PRIMITIVE" - "a boolean/string/number/null element" that
; should be placed in STANDARD part of Capabilities JSON structure
Global $_WD_KEYS__STANDARD_PRIMITIVE = _
'\A(acceptInsecureCerts|browserName|browserVersion|platformName|pageLoadStrategy|setWindowRect|strictFileInteractability|unhandledPromptBehavior|webSocketUrl)\Z'
; $_WD_KEYS__STANDARD_OBJECT should be RegExpPattern of "JSON_OBJECT" - "a dictionary element" that
; should be placed in STANDARD part of Capabilities JSON structure
Global $_WD_KEYS__STANDARD_OBJECT = _
'\A(proxy|timeouts)\Z'
; $_WD_KEYS__STANDARD_OBJECT_ARRAY should be RegExpPattern of "JSON_ARRAY" - "a list of primitive elements" that
; should be placed in $_WD_KEYS__STANDARD_OBJECT .... as an inner element of "JSON_OBJECT" - "a dictionary element" in STANDARD part of Capabilities JSON structure
Global $_WD_KEYS__STANDARD_OBJECT_ARRAY = _
'\A(noproxy)\Z'
; $_WD_KEYS__SPECIFICVENDOR_PRIMITIVE should be RegExpPattern of "JSON_PRIMITIVE" - "a boolean/string/number/null element" that
; should be placed in SPECIFICVENDOR part of Capabilities JSON structure
Global $_WD_KEYS__SPECIFICVENDOR_PRIMITIVE = _
'\A(binary|debuggerAddress|detach|minidumpPath|w3c|ie.edgepath|ie.edgechromium|ignoreProtectedModeSettings|initialBrowserUrl)\Z'
; $_WD_KEYS__SPECIFICVENDOR_ARRAY should be RegExpPattern of "JSON_ARRAY" - "a list of primitive elements" that
; should be placed in SPECIFICVENDOR part of Capabilities JSON structure
Global $_WD_KEYS__SPECIFICVENDOR_ARRAY = _
'\A(args|extensions|excludeSwitches|windowTypes)\Z'
; $_WD_KEYS__SPECIFICVENDOR_OBJECT should be RegExpPattern of "JSON_OBJECT" - "a dictionary element" that
; should be placed in SPECIFICVENDOR part of Capabilities JSON structure
Global $_WD_KEYS__SPECIFICVENDOR_OBJECT = _
'\A(env|log|prefs|perfLoggingPrefs|mobileEmulation|mobileEmulation>deviceMetrics|localState)\Z'
#EndRegion - wd_capabilities.au3 UDF - Global's declarations
#Region - wd_capabilities.au3 UDF - core functions
; #FUNCTION# ====================================================================================================================
; Name ..........: _WD_CapabilitiesStartup
; Description ...: Clear $_WD_CAPS__OBJECT - start creating new JSON string for WebDriver Capabilities
; Syntax ........: _WD_CapabilitiesStartup()
; Parameters ....: None
; Return values .: None
; Author ........: mLipok
; Modified ......:
; Remarks .......:
; Related .......:
; Link ..........:
; Example .......: No
; ===============================================================================================================================
Func _WD_CapabilitiesStartup()
Local Const $sFuncName = "_WD_CapabilitiesStartup"
; CleanUp
$_WD_CAPS__OBJECT = ''
; Create object with empty capabilites: {"capabilities":"{}"}
Json_Put($_WD_CAPS__OBJECT, '[capabilities]', '{}')
__WD_ConsoleWrite($sFuncName & ': #' & @ScriptLineNumber & ' : > ' & Json_Encode($_WD_CAPS__OBJECT) & ' > IsObj = ' & IsObj($_WD_CAPS__OBJECT), $_WD_DEBUG_Full)
EndFunc ;==>_WD_CapabilitiesStartup
; #FUNCTION# ====================================================================================================================
; Name ..........: _WD_CapabilitiesAdd
; Description ...: Add capablitities to JSON string
; Syntax ........: _WD_CapabilitiesAdd($key[, $value1 = ''[, $value2 = '']])
; Parameters ....: $key - Capability or Match type defined in $_WD_KEYS__*
; $value1 - [optional] a variant value. Default is ''.
; $value2 - [optional] a variant value. Default is ''.
; Return values .: None
; Return values .: Success - none.
; Failure - none and sets @error to one of the following values:
; - $_WD_ERROR_InvalidValue
; - $_WD_ERROR_GeneralError
; - $_WD_ERROR_NotSupported
; Author ........: mLipok
; Modified ......: Danp2
; Remarks .......: Parameters $value1 and $value2 depend on the $key value, take a look on example link
; Related .......: __WD_CapabilitiesNotation
; Link ..........:
; Example .......: https://www.autoitscript.com/wiki/WebDriver#Advanced_Capabilities_example
; ===============================================================================================================================
Func _WD_CapabilitiesAdd($key, $value1 = Default, $value2 = Default)
Local Const $sFuncName = "_WD_CapabilitiesAdd"
If $value1 = Default Then $value1 = ''
If $value2 = Default Then $value2 = ''
Local Const $s_Parameters_Info = ' $key = ' & $key & ' $value1 = ' & $value1 & ' $value2 = ' & $value2
__WD_ConsoleWrite($sFuncName & ': #' & @ScriptLineNumber & ' : ' & $s_Parameters_Info, $_WD_DEBUG_Full)
If StringRegExp($key, $_WD_KEYS__MATCHTYPES, $STR_REGEXPMATCH) Then ; check if alwaysMatch|firstMatch
Local $s_MatchType = $key
Local $s_BrowserName = $value1
If $s_BrowserName <> '' Then
Local $iIndex = _ArraySearch($_WD_SupportedBrowsers, StringLower($s_BrowserName), Default, Default, Default, Default, Default, $_WD_BROWSER_Name)
If @error Then
Return SetError(__WD_Error($sFuncName, $_WD_ERROR_NotSupported, 'Not supported Browser Name: ' & $s_BrowserName))
EndIf
$_WD_NOTATION__SPECIFICVENDOR = '["' & $_WD_SupportedBrowsers[$iIndex][$_WD_BROWSER_OptionsKey] & '"]'
ElseIf $s_MatchType = 'alwaysMatch' And $s_BrowserName = '' Then
$_WD_NOTATION__SPECIFICVENDOR = ''
ElseIf $s_MatchType = 'firstMatch' And $s_BrowserName = '' Then
Return SetError(__WD_Error($sFuncName, $_WD_ERROR_InvalidValue, "FirstMatch requires BrowserName to be defined"))
EndIf
$_WD_NOTATION__MATCHTYPE = '[capabilities][' & $s_MatchType & ']'
Switch $s_MatchType
Case 'alwaysMatch'
; Json_Put($_WD_CAPS__OBJECT, '[capabilities][alwaysMatch]', '{}')
; it is already added in _WD_CapabilitiesStartup()
Case 'firstMatch'
; new element in "JSON_ARRAY" list should be added thus $_WD_NOTATION__MATCHTYPE must have set "counter"
Local $iFirstMatch_count = UBound(Json_Get($_WD_CAPS__OBJECT, '[capabilities][firstMatch]'))
$_WD_NOTATION__MATCHTYPE &= '[' & $iFirstMatch_count & ']' ; here is specified which one of JSON ARRAY element should be used
EndSwitch
__WD_ConsoleWrite($sFuncName & ': #' & @ScriptLineNumber & ' : $_WD_NOTATION__MATCHTYPE = ' & $_WD_NOTATION__MATCHTYPE & ' $_WD_NOTATION__SPECIFICVENDOR = ' & $_WD_NOTATION__SPECIFICVENDOR, $_WD_DEBUG_Full)
Local $sMessage = 'Successfully used [' & $s_MatchType & '] ' & (($s_BrowserName) ? (' with specified browser: ' & $s_BrowserName) : (''))
Return SetError(__WD_Error($sFuncName, $_WD_ERROR_Success, $sMessage))
EndIf
Local $v_WatchPoint
Local $s_Notation = ''
If StringRegExp($key, $_WD_KEYS__STANDARD_PRIMITIVE, $STR_REGEXPMATCH) Then ; add JSON STRING/BOOLEAN value in STANDARD part of Capabilities JSON Structure
If $value2 <> '' Then
Return SetError(__WD_Error($sFuncName, $_WD_ERROR_NotSupported, "Not supported: $value2 must be empty string. " & $s_Parameters_Info))
EndIf
$v_WatchPoint = @ScriptLineNumber
$s_Notation = $_WD_NOTATION__MATCHTYPE & '["' & $key & '"]'
ElseIf StringRegExp($key, $_WD_KEYS__STANDARD_OBJECT, $STR_REGEXPMATCH) Then ; add "JSON_OBJECT" in STANDARD part of Capabilities JSON Structure
$s_Notation = $_WD_NOTATION__MATCHTYPE
If Not StringRegExp($value1, $_WD_KEYS__STANDARD_OBJECT_ARRAY, $STR_REGEXPMATCH) Then ; if $value1 (child of the $key "JSON_OBJECT") should be treated as "JSON_STRING" value or "JSON_BOOLEAN" value
$v_WatchPoint = @ScriptLineNumber
$s_Notation &= '["' & $key & '"]' & '[' & $value1 & ']'
Else ; if $value1 (child of the $key "JSON_OBJECT") should be treated as "JSON_ARRAY"
If $value2 <> '' Then ; $value2 an element of $value1 "JSON_ARRAY" must be defined
$v_WatchPoint = @ScriptLineNumber
$s_Notation &= '["' & $key & '"]' & '[' & $value1 & ']'
Local $iCurrent1 = UBound(Json_Get($_WD_CAPS__OBJECT, $s_Notation))
SetError(0) ; for any case because UBound() can set @error
$s_Notation &= '[' & $iCurrent1 & ']' ; here is specified which one of "JSON ARRAY" element should be used
Else ; not supported option
Return SetError(__WD_Error($sFuncName, $_WD_ERROR_NotSupported, "Not supported: $value2 must be set. " & $s_Parameters_Info))
EndIf
EndIf
$value1 = $value2 ; switch
ElseIf StringRegExp($key, $_WD_KEYS__SPECIFICVENDOR_ARRAY, $STR_REGEXPMATCH) And $_WD_NOTATION__SPECIFICVENDOR <> '' Then ; add "JSON_ARRAY" capability in SPECIFIC/VENDOR part of Capabilities JSON Structure
$v_WatchPoint = @ScriptLineNumber
$s_Notation = $_WD_NOTATION__MATCHTYPE & $_WD_NOTATION__SPECIFICVENDOR
$key = StringReplace($key, '>', '"]' & '["')
$s_Notation &= '["' & $key & '"]'
Local $iCurrent2 = UBound(Json_Get($_WD_CAPS__OBJECT, $s_Notation))
SetError(0) ; for any case because UBound() can set @error
$s_Notation &= '[' & $iCurrent2 & ']' ; here is specified which one of "JSON_ARRAY" element should be used
If $value2 Then
$v_WatchPoint = @ScriptLineNumber
$value1 &= '=' & $value2
EndIf
ElseIf StringRegExp($key, $_WD_KEYS__SPECIFICVENDOR_OBJECT, $STR_REGEXPMATCH) And $_WD_NOTATION__SPECIFICVENDOR <> '' Then ; add "JSON_OBJECT" capability in SPECIFIC/VENDOR part of Capabilities JSON Structure
$v_WatchPoint = @ScriptLineNumber
$s_Notation = $_WD_NOTATION__MATCHTYPE & $_WD_NOTATION__SPECIFICVENDOR
$key = StringReplace($key, '>', '"]' & '["')
$s_Notation &= '["' & $key & '"]' & '[' & $value1 & ']'
$value1 = $value2 ; switch
ElseIf StringRegExp($key, $_WD_KEYS__SPECIFICVENDOR_PRIMITIVE, $STR_REGEXPMATCH) And $_WD_NOTATION__SPECIFICVENDOR <> '' Then ; add "JSON_BOOLEAN" value type in SPECIFIC/VENDOR part of Capabilities JSON Structure
$v_WatchPoint = @ScriptLineNumber
$s_Notation = $_WD_NOTATION__MATCHTYPE & $_WD_NOTATION__SPECIFICVENDOR
If $value1 <> '' Then $s_Notation &= '["' & $key & '"]'
ElseIf _
StringRegExp($key, '(?i)' & $_WD_KEYS__STANDARD_PRIMITIVE, $STR_REGEXPMATCH) Or _
StringRegExp($key, '(?i)' & $_WD_KEYS__STANDARD_OBJECT, $STR_REGEXPMATCH) Or _
StringRegExp($key, '(?i)' & $_WD_KEYS__STANDARD_OBJECT_ARRAY, $STR_REGEXPMATCH) Or _
StringRegExp($key, '(?i)' & $_WD_KEYS__SPECIFICVENDOR_PRIMITIVE, $STR_REGEXPMATCH) Or _
StringRegExp($key, '(?i)' & $_WD_KEYS__SPECIFICVENDOR_ARRAY, $STR_REGEXPMATCH) Or _
StringRegExp($key, '(?i)' & $_WD_KEYS__SPECIFICVENDOR_OBJECT, $STR_REGEXPMATCH) _
Then
Return SetError(__WD_Error($sFuncName, $_WD_ERROR_NotSupported, 'Capability name are case sensitive ( check proper case in $_WD_KEYS__*** for "' & $key & '"). ' & $s_Parameters_Info))
Else
Return SetError(__WD_Error($sFuncName, $_WD_ERROR_NotSupported, 'Not supported KEY parameter ( must be defined in $_WD_KEYS__*** ). ' & $s_Parameters_Info))
EndIf
__WD_ConsoleWrite($sFuncName & ": #" & $v_WatchPoint & ' #' & @ScriptLineNumber & ' : ' & $s_Parameters_Info & ' $s_Notation = ' & $s_Notation & ' <<<< ' & $value1, $_WD_DEBUG_Full)
If @error Then Return SetError(__WD_Error($sFuncName, $_WD_ERROR_GeneralError, $s_Parameters_Info))
Json_Put($_WD_CAPS__OBJECT, $s_Notation, $value1)
Return SetError(__WD_Error($sFuncName, $_WD_ERROR_Success, 'Successfully added capability'))
EndFunc ;==>_WD_CapabilitiesAdd
; #FUNCTION# ====================================================================================================================
; Name ..........: _WD_CapabilitiesGet
; Description ...: Get the Capabilities as string for use in session creation
; Syntax ........: _WD_CapabilitiesGet()
; Parameters ....: None
; Return values .: JSON as string
; Author ........: mLipok
; Modified ......:
; Remarks .......: Internally the Capabilities are processed in AutoIt object variable $_WD_CAPS__OBJECT
; Related .......:
; Link ..........:
; Example .......: No
; ===============================================================================================================================
Func _WD_CapabilitiesGet()
Local $Data1 = Json_Encode($_WD_CAPS__OBJECT)
Local $Data2 = Json_Decode($Data1)
Local $Json2 = Json_Encode($Data2, $JSON_UNQUOTED_STRING)
Local $Data3 = Json_Decode($Json2)
Local $Json3 = Json_Encode($Data3, $JSON_PRETTY_PRINT, " ", ",\n", ",\n", ":")
If $Json3 = '' Or $Json3 = '""' Or Not IsString($Json3) Then $Json3 = $_WD_EmptyDict
Return $Json3
EndFunc ;==>_WD_CapabilitiesGet
#EndRegion - wd_capabilities.au3 UDF - core functions
#Region - wd_capabilities.au3 UDF - helper functions
; #FUNCTION# ====================================================================================================================
; Name ..........: _WD_CapabilitiesDefine
; Description ...: Define a new capability by selecting a type and specifying a name
; Syntax ........: _WD_CapabilitiesDefine(Byref $sCapabilityType, $sCapabilityName)
; Parameters ....: $sCapabilityType - reference to $_WD_KEYS__* value that should be suplemented for supporting new capability name
; $sCapabilityName - Name of new capability that should be supported
; Return values .: Success - none.
; Failure - none and sets @error to one of the following values:
; - $_WD_ERROR_InvalidDataType
; - $_WD_ERROR_InvalidValue
; - $_WD_ERROR_NotSupported
; - $_WD_ERROR_AlreadyDefined
; Author ........: mLipok
; Modified ......:
; Remarks .......:
; Related .......:
; Link ..........:
; Example .......: No
; ===============================================================================================================================
Func _WD_CapabilitiesDefine(ByRef $sCapabilityType, $sCapabilityName)
Local Const $sFuncName = "_WD_CapabilitiesDefine"
Local $sMessage = ''
If Not IsString($sCapabilityName) Then
$sMessage = 'New CapabilityName must be string'
Return SetError(__WD_Error($sFuncName, $_WD_ERROR_InvalidDataType, $sMessage))
ElseIf StringLen($sCapabilityName) = 0 Then
$sMessage = 'New CapabilityName must be non empty string'
Return SetError(__WD_Error($sFuncName, $_WD_ERROR_InvalidValue, $sMessage))
ElseIf _
$sCapabilityType <> $_WD_KEYS__STANDARD_PRIMITIVE And _
$sCapabilityType <> $_WD_KEYS__STANDARD_OBJECT And _
$sCapabilityType <> $_WD_KEYS__STANDARD_OBJECT_ARRAY And _
$sCapabilityType <> $_WD_KEYS__SPECIFICVENDOR_PRIMITIVE And _
$sCapabilityType <> $_WD_KEYS__SPECIFICVENDOR_ARRAY And _
$sCapabilityType <> $_WD_KEYS__SPECIFICVENDOR_OBJECT _
Then
$sMessage = 'Unsupported capability type: ' & $sCapabilityType
Return SetError(__WD_Error($sFuncName, $_WD_ERROR_NotSupported, $sMessage))
ElseIf _
StringRegExp($sCapabilityName, '(?i)' & $_WD_KEYS__STANDARD_PRIMITIVE, $STR_REGEXPMATCH) Or _
StringRegExp($sCapabilityName, '(?i)' & $_WD_KEYS__STANDARD_OBJECT, $STR_REGEXPMATCH) Or _
StringRegExp($sCapabilityName, '(?i)' & $_WD_KEYS__STANDARD_OBJECT_ARRAY, $STR_REGEXPMATCH) Or _
StringRegExp($sCapabilityName, '(?i)' & $_WD_KEYS__SPECIFICVENDOR_PRIMITIVE, $STR_REGEXPMATCH) Or _
StringRegExp($sCapabilityName, '(?i)' & $_WD_KEYS__SPECIFICVENDOR_ARRAY, $STR_REGEXPMATCH) Or _
StringRegExp($sCapabilityName, '(?i)' & $_WD_KEYS__SPECIFICVENDOR_OBJECT, $STR_REGEXPMATCH) _
Then
$sMessage = 'New capability already defined: ' & $sCapabilityName
Return SetError(__WD_Error($sFuncName, $_WD_ERROR_AlreadyDefined, $sMessage))
EndIf
$sCapabilityType = StringTrimRight($sCapabilityType, 3) & '|' & $sCapabilityName & ')\Z'
$sMessage = 'Capability: "' & $sCapabilityName & '" Suplemented into: ' & $sCapabilityType
Return SetError(__WD_Error($sFuncName, $_WD_ERROR_Success, $sMessage))
EndFunc ;==>_WD_CapabilitiesDefine
; #FUNCTION# ====================================================================================================================
; Name ..........: _WD_CapabilitiesDump
; Description ...: Dump JSON $_WD_CAPS__OBJECT as string to console
; Syntax ........: _WD_CapabilitiesDump([$s_Comment = ''])
; Parameters ....: $s_Comment - Any comment that should be passed to console. Default is ''.
; Return values .: None
; Author ........: mLipok
; Modified ......:
; Remarks .......:
; Related .......:
; Link ..........:
; Example .......: No
; ===============================================================================================================================
Func _WD_CapabilitiesDump($s_Comment = '')
Local Const $sFuncName = "_WD_CapabilitiesDump"
If $_WD_DEBUG <> $_WD_DEBUG_None Then
__WD_ConsoleWrite($sFuncName & ": JSON structure starts below: " & $s_Comment)
__WD_ConsoleWrite(_WD_CapabilitiesGet())
__WD_ConsoleWrite($sFuncName & ": JSON structure ends above.")
EndIf
EndFunc ;==>_WD_CapabilitiesDump
#EndRegion - wd_capabilities.au3 UDF - helper functions