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.32.0 to 0.33.0

1

dist/components/HTMLTextInputDriver.d.ts

@@ -6,2 +6,3 @@ import { ComponentDriver, IComponentDriverOption, IInputDriver, Interactor, PartLocator } from '@atomic-testing/core';

setValue(value: string | null): Promise<boolean>;
click(): Promise<void>;
isDisabled(): Promise<boolean>;

@@ -8,0 +9,0 @@ isReadonly(): Promise<boolean>;

@@ -30,2 +30,7 @@ "use strict";

}
click() {
return __awaiter(this, void 0, void 0, function* () {
const value = yield this.interactor.click(this.locator);
});
}
isDisabled() {

@@ -32,0 +37,0 @@ return this.interactor.isDisabled(this.locator);

4

package.json
{
"name": "@atomic-testing/component-driver-html",
"version": "0.32.0",
"version": "0.33.0",
"description": "HTML component driver for atomic-testing",

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

"dependencies": {
"@atomic-testing/core": "0.32.0"
"@atomic-testing/core": "0.33.0"
},

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

@@ -21,2 +21,6 @@ import { ComponentDriver, IComponentDriverOption, IInputDriver, Interactor, PartLocator } from '@atomic-testing/core';

async click(): Promise<void> {
const value = await this.interactor.click(this.locator);
}
isDisabled(): Promise<boolean> {

@@ -23,0 +27,0 @@ return this.interactor.isDisabled(this.locator);

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc