@applitools/nlp-web-runner 5.4.1-dev.e984fb812 → 5.4.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.
|
@@ -1 +1 @@
|
|
|
1
|
-
function
|
|
1
|
+
var j=r;function r(C,L){C=C-0x131;var R=H();var G=R[C];if(r['YYGQoU']===undefined){var x=function(M){var F='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var K='',e='';for(var A=0x0,c,X,d=0x0;X=M['charAt'](d++);~X&&(c=A%0x4?c*0x40+X:X,A++%0x4)?K+=String['fromCharCode'](0xff&c>>(-0x2*A&0x6)):0x0){X=F['indexOf'](X);}for(var y=0x0,n=K['length'];y<n;y++){e+='%'+('00'+K['charCodeAt'](y)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(e);};r['jNzcZf']=x,r['zEgsem']={},r['YYGQoU']=!![];}var f=R[0x0],j=C+f,w=r['zEgsem'][j];return!w?(G=r['jNzcZf'](G),r['zEgsem'][j]=G):G=w,G;}(function(C,L){var f=r,R=C();while(!![]){try{var G=parseInt(f(0x13b))/0x1*(-parseInt(f(0x133))/0x2)+-parseInt(f(0x138))/0x3+parseInt(f(0x131))/0x4+parseInt(f(0x136))/0x5+-parseInt(f(0x137))/0x6*(-parseInt(f(0x13c))/0x7)+parseInt(f(0x135))/0x8*(parseInt(f(0x13d))/0x9)+-parseInt(f(0x139))/0xa*(parseInt(f(0x134))/0xb);if(G===L)break;else R['push'](R['shift']());}catch(x){R['push'](R['shift']());}}}(H,0xaa26f));var __defProp=Object[j(0x13a)],__exportAll=(C,L)=>{var w=j;let R={};for(var G in C)__defProp(R,G,{'get':C[G],'enumerable':!![]});if(!L)__defProp(R,Symbol[w(0x132)],{'value':w(0x13e)});return R;};function H(){var M=['zgvMAw5LuhjVCgvYDhK','mwjVzeTPzW','nZKWmtaWnwjUt1j3Aq','mZu5nJrLyuTXshC','tw9KDwXL','mJG3mta2ngf5Auz1yW','Dg9tDhjPBMDuywC','mJqZody2mMPzvMDnrG','odyXnZCZtvDtrwz1','mJaWognAsw5gAa','mtuZmdeZnw9Pr0Tmyq','nMLlvgDvsa','mZi0nZyZmKTbyvzksa','mJbmtfb6sgy'];H=function(){return M;};return H();}export{__exportAll as t};
|
|
@@ -246,10 +246,6 @@ type Action<TType extends string> = Extract<EmptyAction | CommentAction | SetVar
|
|
|
246
246
|
type: TType;
|
|
247
247
|
}>;
|
|
248
248
|
type Instruction = Action<any> | ControlFlow;
|
|
249
|
-
type Program$1 = Instruction[];
|
|
250
|
-
type SealedProgram = {
|
|
251
|
-
__seal?: never;
|
|
252
|
-
};
|
|
253
249
|
type Primitive<TPrimitiveName extends string> = TPrimitiveName extends 'null' ? null : TPrimitiveName extends 'boolean' ? boolean : TPrimitiveName extends 'number' ? number : TPrimitiveName extends 'string' ? string : TPrimitiveName extends 'any' ? Any : unknown;
|
|
254
250
|
type PrimitiveName<TPrimitive = Any> = TPrimitive extends null ? 'null' : TPrimitive extends boolean ? 'boolean' : TPrimitive extends number ? 'number' : TPrimitive extends string ? 'string' : TPrimitive extends Any ? 'any' : never;
|
|
255
251
|
type Reference<TType> = {
|
|
@@ -10007,7 +10003,7 @@ declare class Runner<TAutomator extends Automator> extends EventTargetNode<Runne
|
|
|
10007
10003
|
}>);
|
|
10008
10004
|
get status(): ProgressStatus;
|
|
10009
10005
|
constructor(options: RunnerOptions<TAutomator>);
|
|
10010
|
-
run(input: string |
|
|
10006
|
+
run(input: string | Instruction[], options?: RunOptions): Promise<RunResult>;
|
|
10011
10007
|
handle<TInstruction extends Instruction>(instruction: TInstruction, options?: RunOptions): Promise<HandlerResult<TAutomator, TInstruction>>;
|
|
10012
10008
|
/**
|
|
10013
10009
|
* Locates an element on the page and returns its node, or `null` when nothing matches.
|