Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@expressen/tallahassee

Package Overview
Dependencies
Maintainers
9
Versions
207
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@expressen/tallahassee - npm Package Compare versions

Comparing version 11.4.0 to 11.5.0

lib/HTMLFormControlsCollection.js

4

CHANGELOG.md

@@ -6,2 +6,6 @@ Changelog

# 11.5.0
- Make form elements a live list and pick proper form elements
# 11.4.0

@@ -8,0 +12,0 @@

2

lib/BrowserTab.js

@@ -198,3 +198,3 @@ "use strict";

const payload = inputs.reduce((acc, input) => {
const payload = Array.from(inputs).reduce((acc, input) => {
if (input.disabled) return acc;

@@ -201,0 +201,0 @@

@@ -5,2 +5,3 @@ "use strict";

const Element = require("./Element");
const HTMLFormControlsCollection = require("./HTMLFormControlsCollection");
const RadioNodeList = require("./RadioNodeList");

@@ -35,3 +36,3 @@

get elements() {
return this.$elm.find("input,button,select,textarea").map((_, e) => this.ownerDocument._getElement(this.ownerDocument.$(e))).toArray();
return new HTMLFormControlsCollection(this, "input[type!=image],button,select,textarea,fieldset,object,output");
}

@@ -38,0 +39,0 @@ submit() {

{
"name": "@expressen/tallahassee",
"version": "11.4.0",
"version": "11.5.0",
"description": "Expressen client testing framework",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc