@redhat-developer/locators 1.1.3 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/out/lib/1.37.0.js +8 -0
- package/package.json +2 -2
package/out/lib/1.37.0.js
CHANGED
|
@@ -117,6 +117,7 @@ const editor = {
|
|
|
117
117
|
actionContainer: selenium_webdriver_1.By.className('editor-actions'),
|
|
118
118
|
actionItem: selenium_webdriver_1.By.className('action-label'),
|
|
119
119
|
attribute: 'title',
|
|
120
|
+
dropdown: 'aria-haspopup',
|
|
120
121
|
},
|
|
121
122
|
Editor: {
|
|
122
123
|
constructor: selenium_webdriver_1.By.className('editor-instance'),
|
|
@@ -343,6 +344,13 @@ const sideBar = {
|
|
|
343
344
|
tooltip: (0, page_objects_1.fromAttribute)('title'),
|
|
344
345
|
},
|
|
345
346
|
},
|
|
347
|
+
DebugCallStackSection: {
|
|
348
|
+
predicate: async (section) => (await section.getTitle()).toLowerCase() === 'call stack',
|
|
349
|
+
},
|
|
350
|
+
CallStackItem: {
|
|
351
|
+
label: selenium_webdriver_1.By.className('monaco-highlighted-label'),
|
|
352
|
+
text: selenium_webdriver_1.By.className('state label monaco-count-badge long'),
|
|
353
|
+
},
|
|
346
354
|
ExtensionsViewSection: {
|
|
347
355
|
items: selenium_webdriver_1.By.className('monaco-list-rows'),
|
|
348
356
|
itemRow: selenium_webdriver_1.By.className('monaco-list-row'),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@redhat-developer/locators",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"description": "Pluggable Page Objects locators for an ExTester framework.",
|
|
5
5
|
"main": "out/index.js",
|
|
6
6
|
"types": "out/index.d.ts",
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"@redhat-developer/page-objects": ">=1.0.0",
|
|
41
41
|
"selenium-webdriver": ">=4.6.1"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "7f9bdbf22d797c53c7d8375b7222e66308dbc180"
|
|
44
44
|
}
|