Socket
Socket
Sign inDemoInstall

@atomic-testing/component-driver-html

Package Overview
Dependencies
1
Maintainers
1
Versions
49
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.26.0 to 0.27.0

4

dist/components/HTMLSelectDriver.js

@@ -55,7 +55,7 @@ "use strict";

try {
for (var _d = true, _e = __asyncValues(core_1.driverHelper.getListItemIterator(this, itemLocatorBase, HTMLOptionDriver_1.HTMLOptionDriver)), _f; _f = yield _e.next(), _a = _f.done, !_a;) {
for (var _d = true, _e = __asyncValues(core_1.listHelper.getListItemIterator(this, itemLocatorBase, HTMLOptionDriver_1.HTMLOptionDriver)), _f; _f = yield _e.next(), _a = _f.done, !_a;) {
_c = _f.value;
_d = false;
try {
let item = _c;
const item = _c;
const label = yield item.label();

@@ -62,0 +62,0 @@ const value = yield item.value();

{
"name": "@atomic-testing/component-driver-html",
"version": "0.26.0",
"version": "0.27.0",
"description": "HTML component driver for atomic-testing",

@@ -25,3 +25,3 @@ "main": "dist/index.js",

"dependencies": {
"@atomic-testing/core": "0.26.0"
"@atomic-testing/core": "0.27.0"
},

@@ -28,0 +28,0 @@ "devDependencies": {

@@ -1,2 +0,2 @@

import { byTagName, ComponentDriver, driverHelper, IInputDriver, locatorUtil, Nullable } from '@atomic-testing/core';
import { byTagName, ComponentDriver, IInputDriver, listHelper, locatorUtil, Nullable } from '@atomic-testing/core';

@@ -34,3 +34,3 @@ import { HTMLOptionDriver } from './HTMLOptionDriver';

const itemLocatorBase = locatorUtil.append(this.locator, optionLocator);
for await (let item of driverHelper.getListItemIterator(this, itemLocatorBase, HTMLOptionDriver)) {
for await (const item of listHelper.getListItemIterator(this, itemLocatorBase, HTMLOptionDriver)) {
const label = await item.label();

@@ -37,0 +37,0 @@ const value = await item.value();

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc