@redhat-developer/locators 1.2.0 → 1.4.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 CHANGED
@@ -344,6 +344,13 @@ const sideBar = {
344
344
  tooltip: (0, page_objects_1.fromAttribute)('title'),
345
345
  },
346
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
+ },
347
354
  ExtensionsViewSection: {
348
355
  items: selenium_webdriver_1.By.className('monaco-list-rows'),
349
356
  itemRow: selenium_webdriver_1.By.className('monaco-list-row'),
@@ -451,6 +458,7 @@ const input = {
451
458
  quickPickLabel: selenium_webdriver_1.By.className('label-name'),
452
459
  quickPickDescription: selenium_webdriver_1.By.className('label-description'),
453
460
  quickPickSelectAll: selenium_webdriver_1.By.className('quick-input-check-all'),
461
+ quickPickIsSelected: 'aria-checked',
454
462
  titleBar: selenium_webdriver_1.By.className('quick-input-titlebar'),
455
463
  title: selenium_webdriver_1.By.className('quick-input-title'),
456
464
  backButton: selenium_webdriver_1.By.className('codicon-quick-input-back'),
@@ -0,0 +1,18 @@
1
+ /**
2
+ * Licensed to the Apache Software Foundation (ASF) under one or more
3
+ * contributor license agreements. See the NOTICE file distributed with
4
+ * this work for additional information regarding copyright ownership.
5
+ * The ASF licenses this file to You under the Apache License, Version 2.0
6
+ * (the "License", destination); you may not use this file except in compliance with
7
+ * the License. You may obtain a copy of the License at
8
+ *
9
+ * https://www.apache.org/licenses/LICENSE-2.0
10
+ *
11
+ * Unless required by applicable law or agreed to in writing, software
12
+ * distributed under the License is distributed on an "AS IS" BASIS,
13
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ * See the License for the specific language governing permissions and
15
+ * limitations under the License.
16
+ */
17
+ import { LocatorDiff } from '@redhat-developer/page-objects';
18
+ export declare const diff: LocatorDiff;
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ /**
3
+ * Licensed to the Apache Software Foundation (ASF) under one or more
4
+ * contributor license agreements. See the NOTICE file distributed with
5
+ * this work for additional information regarding copyright ownership.
6
+ * The ASF licenses this file to You under the Apache License, Version 2.0
7
+ * (the "License", destination); you may not use this file except in compliance with
8
+ * the License. You may obtain a copy of the License at
9
+ *
10
+ * https://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing, software
13
+ * distributed under the License is distributed on an "AS IS" BASIS,
14
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ * See the License for the specific language governing permissions and
16
+ * limitations under the License.
17
+ */
18
+ Object.defineProperty(exports, "__esModule", { value: true });
19
+ exports.diff = void 0;
20
+ const page_objects_1 = require("@redhat-developer/page-objects");
21
+ exports.diff = {
22
+ locators: {
23
+ WebviewView: {
24
+ iframe: page_objects_1.By.xpath(`//div[not(@data-parent-flow-to-element-id)]/iframe[@class='webview ready']`),
25
+ },
26
+ },
27
+ };
28
+ //# sourceMappingURL=1.90.0.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@redhat-developer/locators",
3
- "version": "1.2.0",
3
+ "version": "1.4.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": "184a5eb785998e5956c78b3b06706bd1d3bd3557"
43
+ "gitHead": "7a5b40f033471534c9afe131f3aacfe4911c0c87"
44
44
  }