@redhat-developer/locators 1.18.1 → 1.19.1

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.
@@ -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,31 @@
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
+ BreakpointSectionItem: {
24
+ breakpointCheckbox: {
25
+ constructor: page_objects_1.By.xpath(`.//div[contains(@class, 'monaco-custom-toggle') and @role='checkbox']`),
26
+ value: async (el) => (await el.getAttribute('aria-checked')) === 'true',
27
+ },
28
+ },
29
+ },
30
+ };
31
+ //# sourceMappingURL=1.109.0.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@redhat-developer/locators",
3
- "version": "1.18.1",
3
+ "version": "1.19.1",
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": "7bd4f3099cd173390a4e2e9af7a5a687c757ac8d"
43
+ "gitHead": "2348dcd72380e2b62591c3c589f81cd26ed7b76a"
44
44
  }