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

@applitools/types

Package Overview
Dependencies
Maintainers
30
Versions
61
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@applitools/types - npm Package Compare versions

Comparing version 1.3.1 to 1.3.2

4

package.json
{
"name": "@applitools/types",
"version": "1.3.1",
"version": "1.3.2",
"keywords": [

@@ -52,3 +52,3 @@ "applitools",

"devDependencies": {
"@applitools/bongo": "^2.0.2",
"@applitools/bongo": "^2.0.3",
"@types/node": "^14.14.7",

@@ -55,0 +55,0 @@ "@typescript-eslint/eslint-plugin": "^4.7.0",

/// <reference types="node" />
import { Size, Region } from './data';
import { Size, Region, ScreenOrientation } from './data';
export declare type DriverInfo = {

@@ -82,5 +82,7 @@ sessionId?: string;

getOrientation?(driver: TDriver): Promise<'portrait' | 'landscape'>;
getBarsHeight?(driver: TDriver): Promise<{
setOrientation?(driver: TDriver, orientation: ScreenOrientation): Promise<void>;
getBarsSize?(driver: TDriver): Promise<{
statusBarHeight: number;
navigationBarHeight: number;
navigationBarWidth: number;
}>;

@@ -172,7 +174,12 @@ getElementRegion?(driver: TDriver, element: TElement): Promise<Region>;

}): Promise<'portrait' | 'landscape'>;
getBarsHeight?(options: {
setOrientation?(options: {
driver: TDriver;
orientation: ScreenOrientation;
}): Promise<void>;
getBarsSize?(options: {
driver: TDriver;
}): Promise<{
statusBarHeight: number;
navigationBarHeight: number;
navigationBarWidth: number;
}>;

@@ -179,0 +186,0 @@ getElementRegion?(options: {

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