appium-remote-debugger 9.1.18 → 10.0.0-beta.2
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.
- package/CHANGELOG.md +0 -7
- package/README.md +5 -0
- package/atoms/active_element.js +50 -59
- package/atoms/clear.js +117 -138
- package/atoms/clear_local_storage.js +74 -0
- package/atoms/clear_session_storage.js +74 -0
- package/atoms/click.js +123 -157
- package/atoms/default_content.js +74 -0
- package/atoms/execute_async_script.js +9 -15
- package/atoms/execute_script.js +7 -14
- package/atoms/execute_sql.js +2 -0
- package/atoms/find_element.js +90 -99
- package/atoms/find_element_fragment.js +116 -0
- package/atoms/find_elements.js +92 -99
- package/atoms/frame_by_id_or_name.js +92 -100
- package/atoms/frame_by_index.js +50 -59
- package/atoms/get_appcache_status.js +74 -0
- package/atoms/get_attribute.js +89 -0
- package/atoms/get_attribute_value.js +67 -69
- package/atoms/get_effective_style.js +75 -0
- package/atoms/get_element_from_cache.js +3 -6
- package/atoms/get_frame_window.js +50 -59
- package/atoms/get_local_storage_item.js +74 -0
- package/atoms/get_local_storage_key.js +70 -0
- package/atoms/get_local_storage_keys.js +74 -0
- package/atoms/get_local_storage_size.js +74 -0
- package/atoms/get_location.js +3 -0
- package/atoms/get_session_storage_item.js +74 -0
- package/atoms/get_session_storage_key.js +70 -0
- package/atoms/get_session_storage_keys.js +74 -0
- package/atoms/get_session_storage_size.js +74 -0
- package/atoms/get_size.js +74 -74
- package/atoms/get_text.js +97 -98
- package/atoms/get_top_left_coordinates.js +88 -91
- package/atoms/get_value_of_css_property.js +73 -74
- package/atoms/is_displayed.js +91 -92
- package/atoms/is_editable.js +69 -0
- package/atoms/is_enabled.js +66 -66
- package/atoms/is_focusable.js +71 -0
- package/atoms/is_interactable.js +95 -0
- package/atoms/is_selected.js +66 -69
- package/atoms/lastupdate +7 -5
- package/atoms/remove_local_storage_item.js +74 -0
- package/atoms/remove_session_storage_item.js +74 -0
- package/atoms/set_local_storage_item.js +74 -0
- package/atoms/set_session_storage_item.js +74 -0
- package/atoms/submit.js +115 -136
- package/atoms/type.js +115 -136
- package/build/lib/atoms.js +9 -3
- package/build/lib/atoms.js.map +1 -1
- package/build/lib/rpc/rpc-message-handler.js +1 -1
- package/build/lib/rpc/rpc-message-handler.js.map +1 -1
- package/lib/atoms.js +9 -2
- package/lib/rpc/rpc-message-handler.js +1 -2
- package/package.json +9 -9
- package/scripts/build-atoms.js +2 -3
- package/scripts/common.js +67 -107
- package/atoms/element_equals_element.js +0 -83
- package/atoms/fireEvent.js +0 -84
- package/atoms/get_window_size.js +0 -8
- package/atoms/move_mouse.js +0 -134
- package/atoms/refresh.js +0 -82
- package/atoms/tap.js +0 -150
- package/atoms/title.js +0 -82
- package/scripts/import-atoms.js +0 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,3 @@
|
|
|
1
|
-
## [9.1.18](https://github.com/appium/appium-remote-debugger/compare/v9.1.17...v9.1.18) (2023-08-14)
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
### Miscellaneous Chores
|
|
5
|
-
|
|
6
|
-
* **deps-dev:** bump lint-staged from 13.3.0 to 14.0.0 ([#316](https://github.com/appium/appium-remote-debugger/issues/316)) ([28b877f](https://github.com/appium/appium-remote-debugger/commit/28b877fa63f7ba185b0ef4a83b23fe88fd3fbf8e))
|
|
7
|
-
|
|
8
1
|
## [9.1.17](https://github.com/appium/appium-remote-debugger/compare/v9.1.16...v9.1.17) (2023-07-07)
|
|
9
2
|
|
|
10
3
|
|
package/README.md
CHANGED
|
@@ -29,6 +29,11 @@ do so, simply update the branch in the `scripts/common.js`, by modifying the `SE
|
|
|
29
29
|
constant at the top of the file. Then run `npm run build:atoms`, test and create
|
|
30
30
|
a pull request with the resulting changed atoms directory.
|
|
31
31
|
|
|
32
|
+
Note that to build the atoms it is required that you have the `bazel` tool installed. Selenium will
|
|
33
|
+
also require that it be installed at a particular version relative to the version of Selenium that
|
|
34
|
+
has been checked out by our build script. It is most convenient simply to install
|
|
35
|
+
[`bazelisk`](https://github.com/bazelbuild/bazelisk) and have it available on your PATH.
|
|
36
|
+
|
|
32
37
|
One caveat is that there are some changes that are needed for Appium, that are
|
|
33
38
|
not yet in the Selenium codebase. See the [atoms notes](./atoms-notes.md) for
|
|
34
39
|
details.
|
package/atoms/active_element.js
CHANGED
|
@@ -1,14 +1,8 @@
|
|
|
1
|
-
function(){return function(){var h=this;function k(a){return"string"==typeof a}function aa(a,b){a=a.split(".");var c=h;a[0]in c
|
|
2
|
-
function
|
|
3
|
-
else if("function"==b&&"undefined"==typeof a.call)return"object";return b}function
|
|
4
|
-
function
|
|
5
|
-
function ha(a,b){var c=Array.prototype.slice.call(arguments,1);return function(){var
|
|
6
|
-
p[32]="invalid selector";p[51]="invalid selector";p[52]="invalid selector";p[17]="javascript error";p[405]="unsupported operation";p[34]="move target out of bounds";p[27]="no such alert";p[7]="no such element";p[8]="no such frame";p[23]="no such window";p[28]="script timeout";p[33]="session not created";p[10]="stale element reference";p[21]="timeout";p[25]="unable to set cookie";p[26]="unexpected alert open";p[13]=ja;p[9]="unknown command";n.prototype.toString=function(){return this.name+": "+this.message};var ka=window;var la=String.prototype.trim?function(a){return a.trim()}:function(a){return a.replace(/^[\s\xa0]+|[\s\xa0]+$/g,"")};
|
|
7
|
-
function ma(a){var b=0;a=la(String(a)).split(".");for(var c=la("3.5").split("."),d=Math.max(a.length,c.length),e=0;!b&&e<d;e++){var f=a[e]||"",g=c[e]||"";do{f=/(\d*)(\D*)(.*)/.exec(f)||["","","",""];g=/(\d*)(\D*)(.*)/.exec(g)||["","","",""];if(0==f[0].length&&0==g[0].length)break;b=na(0==f[1].length?0:parseInt(f[1],10),0==g[1].length?0:parseInt(g[1],10))||na(0==f[2].length,0==g[2].length)||na(f[2],g[2]);f=f[3];g=g[3]}while(!b)}return b}function na(a,b){return a<b?-1:a>b?1:0};function q(a,b){for(var c=a.length,d=k(a)?a.split(""):a,e=0;e<c;e++)e in d&&b.call(void 0,d[e],e,a)}function oa(a,b){for(var c=a.length,d=[],e=0,f=k(a)?a.split(""):a,g=0;g<c;g++)if(g in f){var l=f[g];b.call(void 0,l,g,a)&&(d[e++]=l)}return d}function pa(a,b){for(var c=a.length,d=Array(c),e=k(a)?a.split(""):a,f=0;f<c;f++)f in e&&(d[f]=b.call(void 0,e[f],f,a));return d}function r(a,b,c){var d=c;q(a,function(c,f){d=b.call(void 0,d,c,f,a)});return d}
|
|
8
|
-
function qa(a,b){for(var c=a.length,d=k(a)?a.split(""):a,e=0;e<c;e++)if(e in d&&b.call(void 0,d[e],e,a))return!0;return!1}function ra(a,b){a:{for(var c=a.length,d=k(a)?a.split(""):a,e=0;e<c;e++)if(e in d&&b.call(void 0,d[e],e,a)){b=e;break a}b=-1}return 0>b?null:k(a)?a.charAt(b):a[b]}function sa(a){return Array.prototype.concat.apply([],arguments)}function ta(a,b,c){return 2>=arguments.length?Array.prototype.slice.call(a,b):Array.prototype.slice.call(a,b,c)};var t;a:{var ua=h.navigator;if(ua){var va=ua.userAgent;if(va){t=va;break a}}t=""}function u(a){return-1!=t.indexOf(a)};function wa(a,b){var c={},d;for(d in a)b.call(void 0,a[d],d,a)&&(c[d]=a[d]);return c}function xa(a,b){var c={},d;for(d in a)c[d]=b.call(void 0,a[d],d,a);return c}function v(a,b){return null!==a&&b in a}function ya(a,b){for(var c in a)if(b.call(void 0,a[c],c,a))return c};function za(){return(u("Chrome")||u("CriOS"))&&!u("Edge")};function Aa(){return u("iPhone")&&!u("iPod")&&!u("iPad")};var Ba=u("Opera"),w=u("Trident")||u("MSIE"),Ca=u("Edge"),Da=u("Gecko")&&!(-1!=t.toLowerCase().indexOf("webkit")&&!u("Edge"))&&!(u("Trident")||u("MSIE"))&&!u("Edge"),Ea=-1!=t.toLowerCase().indexOf("webkit")&&!u("Edge");function Fa(){var a=h.document;return a?a.documentMode:void 0}var Ga;
|
|
9
|
-
a:{var Ha="",Ia=function(){var a=t;if(Da)return/rv\:([^\);]+)(\)|;)/.exec(a);if(Ca)return/Edge\/([\d\.]+)/.exec(a);if(w)return/\b(?:MSIE|rv)[: ]([^\);]+)(\)|;)/.exec(a);if(Ea)return/WebKit\/(\S+)/.exec(a);if(Ba)return/(?:Version)[ \/]?(\S+)/.exec(a)}();Ia&&(Ha=Ia?Ia[1]:"");if(w){var Ja=Fa();if(null!=Ja&&Ja>parseFloat(Ha)){Ga=String(Ja);break a}}Ga=Ha}var Ka={},La;var Ma=h.document;La=Ma&&w?Fa()||("CSS1Compat"==Ma.compatMode?parseInt(Ga,10):5):void 0;function Na(a,b){if(!a||!b)return!1;if(a.contains&&1==b.nodeType)return a==b||a.contains(b);if("undefined"!=typeof a.compareDocumentPosition)return a==b||!!(a.compareDocumentPosition(b)&16);for(;b&&a!=b;)b=b.parentNode;return b==a}
|
|
10
|
-
function Oa(a,b){if(a==b)return 0;if(a.compareDocumentPosition)return a.compareDocumentPosition(b)&2?1:-1;if(w&&!(9<=Number(La))){if(9==a.nodeType)return-1;if(9==b.nodeType)return 1}if("sourceIndex"in a||a.parentNode&&"sourceIndex"in a.parentNode){var c=1==a.nodeType,d=1==b.nodeType;if(c&&d)return a.sourceIndex-b.sourceIndex;var e=a.parentNode,f=b.parentNode;return e==f?Pa(a,b):!c&&Na(e,b)?-1*Qa(a,b):!d&&Na(f,a)?Qa(b,a):(c?a.sourceIndex:e.sourceIndex)-(d?b.sourceIndex:f.sourceIndex)}d=9==a.nodeType?
|
|
11
|
-
a:a.ownerDocument||a.document;c=d.createRange();c.selectNode(a);c.collapse(!0);a=d.createRange();a.selectNode(b);a.collapse(!0);return c.compareBoundaryPoints(h.Range.START_TO_END,a)}function Qa(a,b){var c=a.parentNode;if(c==b)return-1;for(;b.parentNode!=c;)b=b.parentNode;return Pa(b,a)}function Pa(a,b){for(;b=b.previousSibling;)if(b==a)return-1;return 1};var Ra=u("Firefox"),Sa=Aa()||u("iPod"),Ta=u("iPad"),Ua=u("Android")&&!(za()||u("Firefox")||u("Opera")||u("Silk")),Va=za(),Wa=u("Safari")&&!(za()||u("Coast")||u("Opera")||u("Edge")||u("Silk")||u("Android"))&&!(Aa()||u("iPad")||u("iPod"));function x(a){return(a=a.exec(t))?a[1]:""}(function(){if(Ra)return x(/Firefox\/([0-9.]+)/);if(w||Ca||Ba)return Ga;if(Va)return Aa()||u("iPad")||u("iPod")?x(/CriOS\/([0-9.]+)/):x(/Chrome\/([0-9.]+)/);if(Wa&&!(Aa()||u("iPad")||u("iPod")))return x(/Version\/([0-9.]+)/);if(Sa||Ta){var a=/Version\/(\S+).*Mobile\/(\S+)/.exec(t);if(a)return a[1]+"."+a[2]}else if(Ua)return(a=x(/Android\s+([0-9.]+)/))?a:x(/Version\/([0-9.]+)/);return""})();var Xa,Ya,Za=function(){if(!Da)return!1;var a=h.Components;if(!a)return!1;try{if(!a.classes)return!1}catch(f){return!1}var b=a.classes,a=a.interfaces,c=b["@mozilla.org/xpcom/version-comparator;1"].getService(a.nsIVersionComparator),b=b["@mozilla.org/xre/app-info;1"].getService(a.nsIXULAppInfo),d=b.platformVersion,e=b.version;Xa=function(a){return 0<=c.compare(d,""+a)};Ya=function(a){c.compare(e,""+a)};return!0}();Ua&&Za&&Ya(2.3);Ua&&Za&&Ya(4);Wa&&Za&&Ya(6);/*
|
|
1
|
+
function(){return (function(){var h=this||self;function k(a){return"string"==typeof a}function aa(a,b){a=a.split(".");var c=h;a[0]in c||"undefined"==typeof c.execScript||c.execScript("var "+a[0]);for(var d;a.length&&(d=a.shift());)a.length||void 0===b?c[d]&&c[d]!==Object.prototype[d]?c=c[d]:c=c[d]={}:c[d]=b}
|
|
2
|
+
function l(a){var b=typeof a;if("object"==b)if(a){if(a instanceof Array)return"array";if(a instanceof Object)return b;var c=Object.prototype.toString.call(a);if("[object Window]"==c)return"object";if("[object Array]"==c||"number"==typeof a.length&&"undefined"!=typeof a.splice&&"undefined"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable("splice"))return"array";if("[object Function]"==c||"undefined"!=typeof a.call&&"undefined"!=typeof a.propertyIsEnumerable&&!a.propertyIsEnumerable("call"))return"function"}else return"null";
|
|
3
|
+
else if("function"==b&&"undefined"==typeof a.call)return"object";return b}function ba(a){var b=l(a);return"array"==b||"object"==b&&"number"==typeof a.length}function ca(a){var b=typeof a;return"object"==b&&null!=a||"function"==b}function da(a,b,c){return a.call.apply(a.bind,arguments)}
|
|
4
|
+
function ea(a,b,c){if(!a)throw Error();if(2<arguments.length){var d=Array.prototype.slice.call(arguments,2);return function(){var e=Array.prototype.slice.call(arguments);Array.prototype.unshift.apply(e,d);return a.apply(b,e)}}return function(){return a.apply(b,arguments)}}function fa(a,b,c){Function.prototype.bind&&-1!=Function.prototype.bind.toString().indexOf("native code")?fa=da:fa=ea;return fa.apply(null,arguments)}
|
|
5
|
+
function ha(a,b){var c=Array.prototype.slice.call(arguments,1);return function(){var d=c.slice();d.push.apply(d,arguments);return a.apply(this,d)}}var ia=Date.now||function(){return+new Date};function m(a,b){function c(){}c.prototype=b.prototype;a.prototype=new c;a.prototype.constructor=a};/*
|
|
12
6
|
|
|
13
7
|
The MIT License
|
|
14
8
|
|
|
@@ -33,51 +27,48 @@ a:a.ownerDocument||a.document;c=d.createRange();c.selectNode(a);c.collapse(!0);a
|
|
|
33
27
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
34
28
|
IN THE SOFTWARE.
|
|
35
29
|
*/
|
|
36
|
-
function
|
|
37
|
-
function
|
|
38
|
-
function
|
|
39
|
-
function
|
|
40
|
-
|
|
41
|
-
function
|
|
42
|
-
function
|
|
43
|
-
function
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
function
|
|
58
|
-
|
|
59
|
-
function
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
var
|
|
65
|
-
var
|
|
66
|
-
var
|
|
67
|
-
|
|
68
|
-
function
|
|
69
|
-
function
|
|
70
|
-
c=
|
|
71
|
-
function
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
function
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
function
|
|
81
|
-
b){return"number"==typeof b||k(b)});return xa(a,function(a){return b(a,e)});default:return null}}var c=a instanceof ShadowRoot;return b(a,[])}function uc(a,b){return"array"==ba(a)?pa(a,function(a){return uc(a,b)}):da(a)?"function"==typeof a?a:v(a,"ELEMENT")?vc(a.ELEMENT,b):v(a,"WINDOW")?vc(a.WINDOW,b):xa(a,function(a){return uc(a,b)}):a}function wc(a){a=a||document;var b=a.$wdc_;b||(b=a.$wdc_={},b.B=ia());b.B||(b.B=ia());return b}
|
|
82
|
-
function tc(a){var b=wc(a.ownerDocument),c=ya(b,function(b){return b==a});c||(c=":wdc:"+b.B++,b[c]=a);return c}
|
|
83
|
-
function vc(a,b){a=decodeURIComponent(a);b=b||document;var c=wc(b);if(!v(c,a))throw new n(10,"Element does not exist in cache");var d=c[a];if(v(d,"setInterval")){if(d.closed)throw delete c[a],new n(23,"Window has been closed.");return d}for(var e=d;e;){if(e==b.documentElement)return d;e.host&&11===e.nodeType&&(e=e.host);e=e.parentNode}delete c[a];throw new n(10,"Element is no longer attached to the DOM");};aa("_",function(){var a=kc,b=[],c=window||ka;try{a:{var d=a;if(k(d))try{a=new c.Function(d);break a}catch(g){if(w&&c.execScript){c.execScript(";");a=new c.Function(d);break a}throw g;}a=c==window?d:new c.Function("return ("+d+").apply(null,arguments);")}var e=uc(b,c.document);var f={status:0,value:sc(a.apply(null,e))}}catch(g){f={status:v(g,"code")?g.code:13,value:{message:g.message}}}a=[];mc(new lc,f,a);return a.join("")});; return this._.apply(null,arguments);}.apply({navigator:typeof window!='undefined'?window.navigator:null,document:typeof window!='undefined'?window.document:null}, arguments);}
|
|
30
|
+
function p(a,b,c){this.a=a;this.b=b||1;this.f=c||1};var ja=Array.prototype.indexOf?function(a,b){return Array.prototype.indexOf.call(a,b,void 0)}:function(a,b){if("string"===typeof a)return"string"!==typeof b||1!=b.length?-1:a.indexOf(b,0);for(var c=0;c<a.length;c++)if(c in a&&a[c]===b)return c;return-1},q=Array.prototype.forEach?function(a,b){Array.prototype.forEach.call(a,b,void 0)}:function(a,b){for(var c=a.length,d="string"===typeof a?a.split(""):a,e=0;e<c;e++)e in d&&b.call(void 0,d[e],e,a)},ka=Array.prototype.map?function(a,b){return Array.prototype.map.call(a,
|
|
31
|
+
b,void 0)}:function(a,b){for(var c=a.length,d=Array(c),e="string"===typeof a?a.split(""):a,f=0;f<c;f++)f in e&&(d[f]=b.call(void 0,e[f],f,a));return d},r=Array.prototype.reduce?function(a,b,c){return Array.prototype.reduce.call(a,b,c)}:function(a,b,c){var d=c;q(a,function(e,f){d=b.call(void 0,d,e,f,a)});return d},la=Array.prototype.some?function(a,b){return Array.prototype.some.call(a,b,void 0)}:function(a,b){for(var c=a.length,d="string"===typeof a?a.split(""):a,e=0;e<c;e++)if(e in d&&b.call(void 0,
|
|
32
|
+
d[e],e,a))return!0;return!1};function ma(a){return Array.prototype.concat.apply([],arguments)}function na(a,b,c){return 2>=arguments.length?Array.prototype.slice.call(a,b):Array.prototype.slice.call(a,b,c)};var t;a:{var oa=h.navigator;if(oa){var pa=oa.userAgent;if(pa){t=pa;break a}}t=""}function u(a){return-1!=t.indexOf(a)};function qa(a,b){var c={},d;for(d in a)b.call(void 0,a[d],d,a)&&(c[d]=a[d]);return c}function ra(a,b){var c={},d;for(d in a)c[d]=b.call(void 0,a[d],d,a);return c}function v(a,b){return null!==a&&b in a}function sa(a,b){for(var c in a)if(b.call(void 0,a[c],c,a))return c};function ta(){return u("Firefox")||u("FxiOS")}function ua(){return(u("Chrome")||u("CriOS"))&&!u("Edge")};function va(){return u("iPhone")&&!u("iPod")&&!u("iPad")};function wa(a){this.b=a;this.a=0}function xa(a){a=a.match(ya);for(var b=0;b<a.length;b++)za.test(a[b])&&a.splice(b,1);return new wa(a)}var ya=/\$?(?:(?![0-9-\.])(?:\*|[\w-\.]+):)?(?![0-9-\.])(?:\*|[\w-\.]+)|\/\/|\.\.|::|\d+(?:\.\d*)?|\.\d+|"[^"]*"|'[^']*'|[!<>]=|\s+|./g,za=/^\s/;function w(a,b){return a.b[a.a+(b||0)]}function y(a){return a.b[a.a++]}function Aa(a){return a.b.length<=a.a};function Ba(a,b){if(!a||!b)return!1;if(a.contains&&1==b.nodeType)return a==b||a.contains(b);if("undefined"!=typeof a.compareDocumentPosition)return a==b||!!(a.compareDocumentPosition(b)&16);for(;b&&a!=b;)b=b.parentNode;return b==a}
|
|
33
|
+
function Ca(a,b){if(a==b)return 0;if(a.compareDocumentPosition)return a.compareDocumentPosition(b)&2?1:-1;if("sourceIndex"in a||a.parentNode&&"sourceIndex"in a.parentNode){var c=1==a.nodeType,d=1==b.nodeType;if(c&&d)return a.sourceIndex-b.sourceIndex;var e=a.parentNode,f=b.parentNode;return e==f?Da(a,b):!c&&Ba(e,b)?-1*Ea(a,b):!d&&Ba(f,a)?Ea(b,a):(c?a.sourceIndex:e.sourceIndex)-(d?b.sourceIndex:f.sourceIndex)}d=9==a.nodeType?a:a.ownerDocument||a.document;c=d.createRange();c.selectNode(a);c.collapse(!0);
|
|
34
|
+
a=d.createRange();a.selectNode(b);a.collapse(!0);return c.compareBoundaryPoints(h.Range.START_TO_END,a)}function Ea(a,b){var c=a.parentNode;if(c==b)return-1;for(;b.parentNode!=c;)b=b.parentNode;return Da(b,a)}function Da(a,b){for(;b=b.previousSibling;)if(b==a)return-1;return 1};function z(a){var b=null,c=a.nodeType;1==c&&(b=a.textContent,b=void 0==b||null==b?a.innerText:b,b=void 0==b||null==b?"":b);if("string"!=typeof b)if(9==c||1==c){a=9==c?a.documentElement:a.firstChild;c=0;var d=[];for(b="";a;){do 1!=a.nodeType&&(b+=a.nodeValue),d[c++]=a;while(a=a.firstChild);for(;c&&!(a=d[--c].nextSibling););}}else b=a.nodeValue;return b}
|
|
35
|
+
function A(a,b,c){if(null===b)return!0;try{if(!a.getAttribute)return!1}catch(d){return!1}return null==c?!!a.getAttribute(b):a.getAttribute(b,2)==c}function B(a,b,c,d,e){return Fa.call(null,a,b,k(c)?c:null,k(d)?d:null,e||new D)}
|
|
36
|
+
function Fa(a,b,c,d,e){b.getElementsByName&&d&&"name"==c?(b=b.getElementsByName(d),q(b,function(f){a.a(f)&&e.add(f)})):b.getElementsByClassName&&d&&"class"==c?(b=b.getElementsByClassName(d),q(b,function(f){f.className==d&&a.a(f)&&e.add(f)})):a instanceof E?Ga(a,b,c,d,e):b.getElementsByTagName&&(b=b.getElementsByTagName(a.f()),q(b,function(f){A(f,c,d)&&e.add(f)}));return e}function Ga(a,b,c,d,e){for(b=b.firstChild;b;b=b.nextSibling)A(b,c,d)&&a.a(b)&&e.add(b),Ga(a,b,c,d,e)};function D(){this.b=this.a=null;this.l=0}function Ha(a){this.f=a;this.a=this.b=null}function Ia(a,b){if(!a.a)return b;if(!b.a)return a;var c=a.a;b=b.a;for(var d=null,e,f=0;c&&b;)c.f==b.f?(e=c,c=c.a,b=b.a):0<Ca(c.f,b.f)?(e=b,b=b.a):(e=c,c=c.a),(e.b=d)?d.a=e:a.a=e,d=e,f++;for(e=c||b;e;)e.b=d,d=d.a=e,f++,e=e.a;a.b=d;a.l=f;return a}function Ja(a,b){b=new Ha(b);b.a=a.a;a.b?a.a.b=b:a.a=a.b=b;a.a=b;a.l++}D.prototype.add=function(a){a=new Ha(a);a.b=this.b;this.a?this.b.a=a:this.a=this.b=a;this.b=a;this.l++};
|
|
37
|
+
function Ka(a){return(a=a.a)?a.f:null}function La(a){return(a=Ka(a))?z(a):""}function F(a,b){return new Ma(a,!!b)}function Ma(a,b){this.f=a;this.b=(this.s=b)?a.b:a.a;this.a=null}function G(a){var b=a.b;if(null==b)return null;var c=a.a=b;a.b=a.s?b.b:b.a;return c.f};function H(a){this.i=a;this.b=this.g=!1;this.f=null}function I(a){return"\n "+a.toString().split("\n").join("\n ")}function Na(a,b){a.g=b}function Oa(a,b){a.b=b}function J(a,b){a=a.a(b);return a instanceof D?+La(a):+a}function K(a,b){a=a.a(b);return a instanceof D?La(a):""+a}function L(a,b){a=a.a(b);return a instanceof D?!!a.l:!!a};function M(a,b,c){H.call(this,a.i);this.c=a;this.h=b;this.o=c;this.g=b.g||c.g;this.b=b.b||c.b;this.c==Pa&&(c.b||c.g||4==c.i||0==c.i||!b.f?b.b||b.g||4==b.i||0==b.i||!c.f||(this.f={name:c.f.name,u:b}):this.f={name:b.f.name,u:c})}m(M,H);
|
|
38
|
+
function N(a,b,c,d,e){b=b.a(d);c=c.a(d);var f;if(b instanceof D&&c instanceof D){b=F(b);for(d=G(b);d;d=G(b))for(e=F(c),f=G(e);f;f=G(e))if(a(z(d),z(f)))return!0;return!1}if(b instanceof D||c instanceof D){b instanceof D?(e=b,d=c):(e=c,d=b);f=F(e);for(var g=typeof d,n=G(f);n;n=G(f)){switch(g){case "number":n=+z(n);break;case "boolean":n=!!z(n);break;case "string":n=z(n);break;default:throw Error("Illegal primitive type for comparison.");}if(e==b&&a(n,d)||e==c&&a(d,n))return!0}return!1}return e?"boolean"==
|
|
39
|
+
typeof b||"boolean"==typeof c?a(!!b,!!c):"number"==typeof b||"number"==typeof c?a(+b,+c):a(b,c):a(+b,+c)}M.prototype.a=function(a){return this.c.m(this.h,this.o,a)};M.prototype.toString=function(){var a="Binary Expression: "+this.c;a+=I(this.h);return a+=I(this.o)};function Qa(a,b,c,d){this.J=a;this.F=b;this.i=c;this.m=d}Qa.prototype.toString=function(){return this.J};var Ra={};
|
|
40
|
+
function O(a,b,c,d){if(Ra.hasOwnProperty(a))throw Error("Binary operator already created: "+a);a=new Qa(a,b,c,d);return Ra[a.toString()]=a}O("div",6,1,function(a,b,c){return J(a,c)/J(b,c)});O("mod",6,1,function(a,b,c){return J(a,c)%J(b,c)});O("*",6,1,function(a,b,c){return J(a,c)*J(b,c)});O("+",5,1,function(a,b,c){return J(a,c)+J(b,c)});O("-",5,1,function(a,b,c){return J(a,c)-J(b,c)});O("<",4,2,function(a,b,c){return N(function(d,e){return d<e},a,b,c)});
|
|
41
|
+
O(">",4,2,function(a,b,c){return N(function(d,e){return d>e},a,b,c)});O("<=",4,2,function(a,b,c){return N(function(d,e){return d<=e},a,b,c)});O(">=",4,2,function(a,b,c){return N(function(d,e){return d>=e},a,b,c)});var Pa=O("=",3,2,function(a,b,c){return N(function(d,e){return d==e},a,b,c,!0)});O("!=",3,2,function(a,b,c){return N(function(d,e){return d!=e},a,b,c,!0)});O("and",2,2,function(a,b,c){return L(a,c)&&L(b,c)});O("or",1,2,function(a,b,c){return L(a,c)||L(b,c)});function Sa(a,b){if(b.a.length&&4!=a.i)throw Error("Primary expression must evaluate to nodeset if filter has predicate(s).");H.call(this,a.i);this.c=a;this.h=b;this.g=a.g;this.b=a.b}m(Sa,H);Sa.prototype.a=function(a){a=this.c.a(a);return Ta(this.h,a)};Sa.prototype.toString=function(){var a="Filter:"+I(this.c);return a+=I(this.h)};function Ua(a,b){if(b.length<a.D)throw Error("Function "+a.j+" expects at least"+a.D+" arguments, "+b.length+" given");if(null!==a.B&&b.length>a.B)throw Error("Function "+a.j+" expects at most "+a.B+" arguments, "+b.length+" given");a.I&&q(b,function(c,d){if(4!=c.i)throw Error("Argument "+d+" to function "+a.j+" is not of type Nodeset: "+c);});H.call(this,a.i);this.v=a;this.c=b;Na(this,a.g||la(b,function(c){return c.g}));Oa(this,a.H&&!b.length||a.G&&!!b.length||la(b,function(c){return c.b}))}
|
|
42
|
+
m(Ua,H);Ua.prototype.a=function(a){return this.v.m.apply(null,ma(a,this.c))};Ua.prototype.toString=function(){var a="Function: "+this.v;if(this.c.length){var b=r(this.c,function(c,d){return c+I(d)},"Arguments:");a+=I(b)}return a};function Va(a,b,c,d,e,f,g,n){this.j=a;this.i=b;this.g=c;this.H=d;this.G=!1;this.m=e;this.D=f;this.B=void 0!==g?g:f;this.I=!!n}Va.prototype.toString=function(){return this.j};var Wa={};
|
|
43
|
+
function P(a,b,c,d,e,f,g,n){if(Wa.hasOwnProperty(a))throw Error("Function already created: "+a+".");Wa[a]=new Va(a,b,c,d,e,f,g,n)}P("boolean",2,!1,!1,function(a,b){return L(b,a)},1);P("ceiling",1,!1,!1,function(a,b){return Math.ceil(J(b,a))},1);P("concat",3,!1,!1,function(a,b){return r(na(arguments,1),function(c,d){return c+K(d,a)},"")},2,null);P("contains",2,!1,!1,function(a,b,c){b=K(b,a);a=K(c,a);return-1!=b.indexOf(a)},2);P("count",1,!1,!1,function(a,b){return b.a(a).l},1,1,!0);
|
|
44
|
+
P("false",2,!1,!1,function(){return!1},0);P("floor",1,!1,!1,function(a,b){return Math.floor(J(b,a))},1);P("id",4,!1,!1,function(a,b){var c=a.a,d=9==c.nodeType?c:c.ownerDocument;a=K(b,a).split(/\s+/);var e=[];q(a,function(g){g=d.getElementById(g);!g||0<=ja(e,g)||e.push(g)});e.sort(Ca);var f=new D;q(e,function(g){f.add(g)});return f},1);P("lang",2,!1,!1,function(){return!1},1);P("last",1,!0,!1,function(a){if(1!=arguments.length)throw Error("Function last expects ()");return a.f},0);
|
|
45
|
+
P("local-name",3,!1,!0,function(a,b){return(a=b?Ka(b.a(a)):a.a)?a.localName||a.nodeName.toLowerCase():""},0,1,!0);P("name",3,!1,!0,function(a,b){return(a=b?Ka(b.a(a)):a.a)?a.nodeName.toLowerCase():""},0,1,!0);P("namespace-uri",3,!0,!1,function(){return""},0,1,!0);P("normalize-space",3,!1,!0,function(a,b){return(b?K(b,a):z(a.a)).replace(/[\s\xa0]+/g," ").replace(/^\s+|\s+$/g,"")},0,1);P("not",2,!1,!1,function(a,b){return!L(b,a)},1);P("number",1,!1,!0,function(a,b){return b?J(b,a):+z(a.a)},0,1);
|
|
46
|
+
P("position",1,!0,!1,function(a){return a.b},0);P("round",1,!1,!1,function(a,b){return Math.round(J(b,a))},1);P("starts-with",2,!1,!1,function(a,b,c){b=K(b,a);a=K(c,a);return 0==b.lastIndexOf(a,0)},2);P("string",3,!1,!0,function(a,b){return b?K(b,a):z(a.a)},0,1);P("string-length",1,!1,!0,function(a,b){return(b?K(b,a):z(a.a)).length},0,1);
|
|
47
|
+
P("substring",3,!1,!1,function(a,b,c,d){c=J(c,a);if(isNaN(c)||Infinity==c||-Infinity==c)return"";d=d?J(d,a):Infinity;if(isNaN(d)||-Infinity===d)return"";c=Math.round(c)-1;var e=Math.max(c,0);a=K(b,a);return Infinity==d?a.substring(e):a.substring(e,c+Math.round(d))},2,3);P("substring-after",3,!1,!1,function(a,b,c){b=K(b,a);a=K(c,a);c=b.indexOf(a);return-1==c?"":b.substring(c+a.length)},2);
|
|
48
|
+
P("substring-before",3,!1,!1,function(a,b,c){b=K(b,a);a=K(c,a);a=b.indexOf(a);return-1==a?"":b.substring(0,a)},2);P("sum",1,!1,!1,function(a,b){a=F(b.a(a));b=0;for(var c=G(a);c;c=G(a))b+=+z(c);return b},1,1,!0);P("translate",3,!1,!1,function(a,b,c,d){b=K(b,a);c=K(c,a);var e=K(d,a);a={};for(d=0;d<c.length;d++){var f=c.charAt(d);f in a||(a[f]=e.charAt(d))}c="";for(d=0;d<b.length;d++)f=b.charAt(d),c+=f in a?a[f]:f;return c},3);P("true",2,!1,!1,function(){return!0},0);function E(a,b){this.h=a;this.c=void 0!==b?b:null;this.b=null;switch(a){case "comment":this.b=8;break;case "text":this.b=3;break;case "processing-instruction":this.b=7;break;case "node":break;default:throw Error("Unexpected argument");}}function Xa(a){return"comment"==a||"text"==a||"processing-instruction"==a||"node"==a}E.prototype.a=function(a){return null===this.b||this.b==a.nodeType};E.prototype.f=function(){return this.h};
|
|
49
|
+
E.prototype.toString=function(){var a="Kind Test: "+this.h;null===this.c||(a+=I(this.c));return a};function Ya(a){H.call(this,3);this.c=a.substring(1,a.length-1)}m(Ya,H);Ya.prototype.a=function(){return this.c};Ya.prototype.toString=function(){return"Literal: "+this.c};function R(a,b){this.j=a.toLowerCase();a="*"==this.j?"*":"http://www.w3.org/1999/xhtml";this.b=b?b.toLowerCase():a}R.prototype.a=function(a){var b=a.nodeType;if(1!=b&&2!=b)return!1;b=void 0!==a.localName?a.localName:a.nodeName;return"*"!=this.j&&this.j!=b.toLowerCase()?!1:"*"==this.b?!0:this.b==(a.namespaceURI?a.namespaceURI.toLowerCase():"http://www.w3.org/1999/xhtml")};R.prototype.f=function(){return this.j};
|
|
50
|
+
R.prototype.toString=function(){return"Name Test: "+("http://www.w3.org/1999/xhtml"==this.b?"":this.b+":")+this.j};function Za(a){H.call(this,1);this.c=a}m(Za,H);Za.prototype.a=function(){return this.c};Za.prototype.toString=function(){return"Number: "+this.c};function $a(a,b){H.call(this,a.i);this.h=a;this.c=b;this.g=a.g;this.b=a.b;1==this.c.length&&(a=this.c[0],a.A||a.c!=ab||(a=a.o,"*"!=a.f()&&(this.f={name:a.f(),u:null})))}m($a,H);function S(){H.call(this,4)}m(S,H);S.prototype.a=function(a){var b=new D;a=a.a;9==a.nodeType?b.add(a):b.add(a.ownerDocument);return b};S.prototype.toString=function(){return"Root Helper Expression"};function bb(){H.call(this,4)}m(bb,H);bb.prototype.a=function(a){var b=new D;b.add(a.a);return b};bb.prototype.toString=function(){return"Context Helper Expression"};
|
|
51
|
+
function cb(a){return"/"==a||"//"==a}$a.prototype.a=function(a){var b=this.h.a(a);if(!(b instanceof D))throw Error("Filter expression must evaluate to nodeset.");a=this.c;for(var c=0,d=a.length;c<d&&b.l;c++){var e=a[c],f=F(b,e.c.s);if(e.g||e.c!=db)if(e.g||e.c!=eb){var g=G(f);for(b=e.a(new p(g));null!=(g=G(f));)g=e.a(new p(g)),b=Ia(b,g)}else g=G(f),b=e.a(new p(g));else{for(g=G(f);(b=G(f))&&(!g.contains||g.contains(b))&&b.compareDocumentPosition(g)&8;g=b);b=e.a(new p(g))}}return b};
|
|
52
|
+
$a.prototype.toString=function(){var a="Path Expression:"+I(this.h);if(this.c.length){var b=r(this.c,function(c,d){return c+I(d)},"Steps:");a+=I(b)}return a};function fb(a,b){this.a=a;this.s=!!b}
|
|
53
|
+
function Ta(a,b,c){for(c=c||0;c<a.a.length;c++)for(var d=a.a[c],e=F(b),f=b.l,g,n=0;g=G(e);n++){var x=a.s?f-n:n+1;g=d.a(new p(g,x,f));if("number"==typeof g)x=x==g;else if("string"==typeof g||"boolean"==typeof g)x=!!g;else if(g instanceof D)x=0<g.l;else throw Error("Predicate.evaluate returned an unexpected type.");if(!x){x=e;g=x.f;var C=x.a;if(!C)throw Error("Next must be called at least once before remove.");var Q=C.b;C=C.a;Q?Q.a=C:g.a=C;C?C.b=Q:g.b=Q;g.l--;x.a=null}}return b}
|
|
54
|
+
fb.prototype.toString=function(){return r(this.a,function(a,b){return a+I(b)},"Predicates:")};function T(a,b,c,d){H.call(this,4);this.c=a;this.o=b;this.h=c||new fb([]);this.A=!!d;b=this.h;b=0<b.a.length?b.a[0].f:null;a.K&&b&&(this.f={name:b.name,u:b.u});a:{a=this.h;for(b=0;b<a.a.length;b++)if(c=a.a[b],c.g||1==c.i||0==c.i){a=!0;break a}a=!1}this.g=a}m(T,H);
|
|
55
|
+
T.prototype.a=function(a){var b=a.a,c=this.f,d=null,e=null,f=0;c&&(d=c.name,e=c.u?K(c.u,a):null,f=1);if(this.A)if(this.g||this.c!=gb)if(b=F((new T(hb,new E("node"))).a(a)),c=G(b))for(a=this.m(c,d,e,f);null!=(c=G(b));)a=Ia(a,this.m(c,d,e,f));else a=new D;else a=B(this.o,b,d,e),a=Ta(this.h,a,f);else a=this.m(a.a,d,e,f);return a};T.prototype.m=function(a,b,c,d){a=this.c.v(this.o,a,b,c);return a=Ta(this.h,a,d)};
|
|
56
|
+
T.prototype.toString=function(){var a="Step:"+I("Operator: "+(this.A?"//":"/"));this.c.j&&(a+=I("Axis: "+this.c));a+=I(this.o);if(this.h.a.length){var b=r(this.h.a,function(c,d){return c+I(d)},"Predicates:");a+=I(b)}return a};function ib(a,b,c,d){this.j=a;this.v=b;this.s=c;this.K=d}ib.prototype.toString=function(){return this.j};var jb={};function U(a,b,c,d){if(jb.hasOwnProperty(a))throw Error("Axis already created: "+a);b=new ib(a,b,c,!!d);return jb[a]=b}
|
|
57
|
+
U("ancestor",function(a,b){for(var c=new D;b=b.parentNode;)a.a(b)&&Ja(c,b);return c},!0);U("ancestor-or-self",function(a,b){var c=new D;do a.a(b)&&Ja(c,b);while(b=b.parentNode);return c},!0);
|
|
58
|
+
var ab=U("attribute",function(a,b){var c=new D,d=a.f();if(b=b.attributes)if(a instanceof E&&null===a.b||"*"==d)for(a=0;d=b[a];a++)c.add(d);else(d=b.getNamedItem(d))&&c.add(d);return c},!1),gb=U("child",function(a,b,c,d,e){c=k(c)?c:null;d=k(d)?d:null;e=e||new D;for(b=b.firstChild;b;b=b.nextSibling)A(b,c,d)&&a.a(b)&&e.add(b);return e},!1,!0);U("descendant",B,!1,!0);
|
|
59
|
+
var hb=U("descendant-or-self",function(a,b,c,d){var e=new D;A(b,c,d)&&a.a(b)&&e.add(b);return B(a,b,c,d,e)},!1,!0),db=U("following",function(a,b,c,d){var e=new D;do for(var f=b;f=f.nextSibling;)A(f,c,d)&&a.a(f)&&e.add(f),e=B(a,f,c,d,e);while(b=b.parentNode);return e},!1,!0);U("following-sibling",function(a,b){for(var c=new D;b=b.nextSibling;)a.a(b)&&c.add(b);return c},!1);U("namespace",function(){return new D},!1);
|
|
60
|
+
var kb=U("parent",function(a,b){var c=new D;if(9==b.nodeType)return c;if(2==b.nodeType)return c.add(b.ownerElement),c;b=b.parentNode;a.a(b)&&c.add(b);return c},!1),eb=U("preceding",function(a,b,c,d){var e=new D,f=[];do f.unshift(b);while(b=b.parentNode);for(var g=1,n=f.length;g<n;g++){var x=[];for(b=f[g];b=b.previousSibling;)x.unshift(b);for(var C=0,Q=x.length;C<Q;C++)b=x[C],A(b,c,d)&&a.a(b)&&e.add(b),e=B(a,b,c,d,e)}return e},!0,!0);
|
|
61
|
+
U("preceding-sibling",function(a,b){for(var c=new D;b=b.previousSibling;)a.a(b)&&Ja(c,b);return c},!0);var lb=U("self",function(a,b){var c=new D;a.a(b)&&c.add(b);return c},!1);function mb(a){H.call(this,1);this.c=a;this.g=a.g;this.b=a.b}m(mb,H);mb.prototype.a=function(a){return-J(this.c,a)};mb.prototype.toString=function(){return"Unary Expression: -"+I(this.c)};function nb(a){H.call(this,4);this.c=a;Na(this,la(this.c,function(b){return b.g}));Oa(this,la(this.c,function(b){return b.b}))}m(nb,H);nb.prototype.a=function(a){var b=new D;q(this.c,function(c){c=c.a(a);if(!(c instanceof D))throw Error("Path expression must evaluate to NodeSet.");b=Ia(b,c)});return b};nb.prototype.toString=function(){return r(this.c,function(a,b){return a+I(b)},"Union Expression:")};function ob(a,b){this.a=a;this.b=b}function pb(a){for(var b,c=[];;){V(a,"Missing right hand side of binary expression.");b=qb(a);var d=y(a.a);if(!d)break;var e=(d=Ra[d]||null)&&d.F;if(!e){a.a.a--;break}for(;c.length&&e<=c[c.length-1].F;)b=new M(c.pop(),c.pop(),b);c.push(b,d)}for(;c.length;)b=new M(c.pop(),c.pop(),b);return b}function V(a,b){if(Aa(a.a))throw Error(b);}function rb(a,b){a=y(a.a);if(a!=b)throw Error("Bad token, expected: "+b+" got: "+a);}
|
|
62
|
+
function sb(a){a=y(a.a);if(")"!=a)throw Error("Bad token: "+a);}function tb(a){a=y(a.a);if(2>a.length)throw Error("Unclosed literal string");return new Ya(a)}
|
|
63
|
+
function ub(a){var b=[];if(cb(w(a.a))){var c=y(a.a);var d=w(a.a);if("/"==c&&(Aa(a.a)||"."!=d&&".."!=d&&"@"!=d&&"*"!=d&&!/(?![0-9])[\w]/.test(d)))return new S;d=new S;V(a,"Missing next location step.");c=vb(a,c);b.push(c)}else{a:{c=w(a.a);d=c.charAt(0);switch(d){case "$":throw Error("Variable reference not allowed in HTML XPath");case "(":y(a.a);c=pb(a);V(a,'unclosed "("');rb(a,")");break;case '"':case "'":c=tb(a);break;default:if(isNaN(+c))if(!Xa(c)&&/(?![0-9])[\w]/.test(d)&&"("==w(a.a,1)){c=y(a.a);
|
|
64
|
+
c=Wa[c]||null;y(a.a);for(d=[];")"!=w(a.a);){V(a,"Missing function argument list.");d.push(pb(a));if(","!=w(a.a))break;y(a.a)}V(a,"Unclosed function argument list.");sb(a);c=new Ua(c,d)}else{c=null;break a}else c=new Za(+y(a.a))}"["==w(a.a)&&(d=new fb(wb(a)),c=new Sa(c,d))}if(c)if(cb(w(a.a)))d=c;else return c;else c=vb(a,"/"),d=new bb,b.push(c)}for(;cb(w(a.a));)c=y(a.a),V(a,"Missing next location step."),c=vb(a,c),b.push(c);return new $a(d,b)}
|
|
65
|
+
function vb(a,b){if("/"!=b&&"//"!=b)throw Error('Step op should be "/" or "//"');if("."==w(a.a)){var c=new T(lb,new E("node"));y(a.a);return c}if(".."==w(a.a))return c=new T(kb,new E("node")),y(a.a),c;if("@"==w(a.a)){var d=ab;y(a.a);V(a,"Missing attribute name")}else if("::"==w(a.a,1)){if(!/(?![0-9])[\w]/.test(w(a.a).charAt(0)))throw Error("Bad token: "+y(a.a));var e=y(a.a);d=jb[e]||null;if(!d)throw Error("No axis with name: "+e);y(a.a);V(a,"Missing node name")}else d=gb;e=w(a.a);if(/(?![0-9])[\w\*]/.test(e.charAt(0)))if("("==
|
|
66
|
+
w(a.a,1)){if(!Xa(e))throw Error("Invalid node type: "+e);e=y(a.a);if(!Xa(e))throw Error("Invalid type name: "+e);rb(a,"(");V(a,"Bad nodetype");var f=w(a.a).charAt(0),g=null;if('"'==f||"'"==f)g=tb(a);V(a,"Bad nodetype");sb(a);e=new E(e,g)}else if(e=y(a.a),f=e.indexOf(":"),-1==f)e=new R(e);else{g=e.substring(0,f);if("*"==g)var n="*";else if(n=a.b(g),!n)throw Error("Namespace prefix not declared: "+g);e=e.substr(f+1);e=new R(e,n)}else throw Error("Bad token: "+y(a.a));a=new fb(wb(a),d.s);return c||new T(d,
|
|
67
|
+
e,a,"//"==b)}function wb(a){for(var b=[];"["==w(a.a);){y(a.a);V(a,"Missing predicate expression.");var c=pb(a);b.push(c);V(a,"Unclosed predicate expression.");rb(a,"]")}return b}function qb(a){if("-"==w(a.a))return y(a.a),new mb(qb(a));var b=ub(a);if("|"!=w(a.a))a=b;else{for(b=[b];"|"==y(a.a);)V(a,"Missing next union location path."),b.push(ub(a));a.a.a--;a=new nb(b)}return a};function xb(a){switch(a.nodeType){case 1:return ha(yb,a);case 9:return xb(a.documentElement);case 11:case 10:case 6:case 12:return zb;default:return a.parentNode?xb(a.parentNode):zb}}function zb(){return null}function yb(a,b){if(a.prefix==b)return a.namespaceURI||"http://www.w3.org/1999/xhtml";var c=a.getAttributeNode("xmlns:"+b);return c&&c.specified?c.value||null:a.parentNode&&9!=a.parentNode.nodeType?yb(a.parentNode,b):null};function Ab(a,b){if(!a.length)throw Error("Empty XPath expression.");a=xa(a);if(Aa(a))throw Error("Invalid XPath expression.");b?"function"==l(b)||(b=fa(b.lookupNamespaceURI,b)):b=function(){return null};var c=pb(new ob(a,b));if(!Aa(a))throw Error("Bad token: "+y(a));this.evaluate=function(d,e){d=c.a(new p(d));return new W(d,e)}}
|
|
68
|
+
function W(a,b){if(0==b)if(a instanceof D)b=4;else if("string"==typeof a)b=2;else if("number"==typeof a)b=1;else if("boolean"==typeof a)b=3;else throw Error("Unexpected evaluation result.");if(2!=b&&1!=b&&3!=b&&!(a instanceof D))throw Error("value could not be converted to the specified type");this.resultType=b;switch(b){case 2:this.stringValue=a instanceof D?La(a):""+a;break;case 1:this.numberValue=a instanceof D?+La(a):+a;break;case 3:this.booleanValue=a instanceof D?0<a.l:!!a;break;case 4:case 5:case 6:case 7:var c=
|
|
69
|
+
F(a);var d=[];for(var e=G(c);e;e=G(c))d.push(e);this.snapshotLength=a.l;this.invalidIteratorState=!1;break;case 8:case 9:this.singleNodeValue=Ka(a);break;default:throw Error("Unknown XPathResult type.");}var f=0;this.iterateNext=function(){if(4!=b&&5!=b)throw Error("iterateNext called with wrong result type");return f>=d.length?null:d[f++]};this.snapshotItem=function(g){if(6!=b&&7!=b)throw Error("snapshotItem called with wrong result type");return g>=d.length||0>g?null:d[g]}}W.ANY_TYPE=0;
|
|
70
|
+
W.NUMBER_TYPE=1;W.STRING_TYPE=2;W.BOOLEAN_TYPE=3;W.UNORDERED_NODE_ITERATOR_TYPE=4;W.ORDERED_NODE_ITERATOR_TYPE=5;W.UNORDERED_NODE_SNAPSHOT_TYPE=6;W.ORDERED_NODE_SNAPSHOT_TYPE=7;W.ANY_UNORDERED_NODE_TYPE=8;W.FIRST_ORDERED_NODE_TYPE=9;function Bb(a){this.lookupNamespaceURI=xb(a)}
|
|
71
|
+
function Cb(a,b){a=a||h;var c=a.Document&&a.Document.prototype||a.document;if(!c.evaluate||b)a.XPathResult=W,c.evaluate=function(d,e,f,g){return(new Ab(d,f)).evaluate(e,g)},c.createExpression=function(d,e){return new Ab(d,e)},c.createNSResolver=function(d){return new Bb(d)}}aa("wgxpath.install",Cb);aa("wgxpath.install",Cb);var Db=window;function X(a,b){this.code=a;this.a=Y[a]||Eb;this.message=b||"";a=this.a.replace(/((?:^|\s+)[a-z])/g,function(c){return c.toUpperCase().replace(/^[\s\xa0]+/g,"")});b=a.length-5;if(0>b||a.indexOf("Error",b)!=b)a+="Error";this.name=a;a=Error(this.message);a.name=this.name;this.stack=a.stack||""}m(X,Error);var Eb="unknown error",Y={15:"element not selectable",11:"element not visible"};Y[31]=Eb;Y[30]=Eb;Y[24]="invalid cookie domain";Y[29]="invalid element coordinates";Y[12]="invalid element state";
|
|
72
|
+
Y[32]="invalid selector";Y[51]="invalid selector";Y[52]="invalid selector";Y[17]="javascript error";Y[405]="unsupported operation";Y[34]="move target out of bounds";Y[27]="no such alert";Y[7]="no such element";Y[8]="no such frame";Y[23]="no such window";Y[28]="script timeout";Y[33]="session not created";Y[10]="stale element reference";Y[21]="timeout";Y[25]="unable to set cookie";Y[26]="unexpected alert open";Y[13]=Eb;Y[9]="unknown command";var Fb=ta(),Gb=va()||u("iPod"),Hb=u("iPad"),Ib=u("Android")&&!(ua()||ta()||u("Opera")||u("Silk")),Jb=ua(),Kb=u("Safari")&&!(ua()||u("Coast")||u("Opera")||u("Edge")||u("Edg/")||u("OPR")||ta()||u("Silk")||u("Android"))&&!(va()||u("iPad")||u("iPod"));function Z(a){return(a=a.exec(t))?a[1]:""}(function(){if(Fb)return Z(/Firefox\/([0-9.]+)/);if(Jb)return va()||u("iPad")||u("iPod")?Z(/CriOS\/([0-9.]+)/):Z(/Chrome\/([0-9.]+)/);if(Kb&&!(va()||u("iPad")||u("iPod")))return Z(/Version\/([0-9.]+)/);if(Gb||Hb){var a=/Version\/(\S+).*Mobile\/(\S+)/.exec(t);if(a)return a[1]+"."+a[2]}else if(Ib)return(a=Z(/Android\s+([0-9.]+)/))?a:Z(/Version\/([0-9.]+)/);return""})();function Lb(){return document.activeElement||document.body};var Mb=JSON.stringify;function Nb(a){function b(c,d){switch(l(c)){case "string":case "number":case "boolean":return c;case "function":return c.toString();case "array":return ka(c,function(f){return b(f,d)});case "object":if(0<=d.indexOf(c))throw new X(17,"Recursive object cannot be transferred");if(v(c,"nodeType")&&(1==c.nodeType||9==c.nodeType)){var e={};e.ELEMENT=Ob(c);return e}if(v(c,"document"))return e={},e.WINDOW=Ob(c),e;d.push(c);if(ba(c))return ka(c,function(f){return b(f,d)});c=qa(c,function(f,g){return"number"==
|
|
73
|
+
typeof g||k(g)});return ra(c,function(f){return b(f,d)});default:return null}}return b(a,[])}function Pb(a,b){return"array"==l(a)?ka(a,function(c){return Pb(c,b)}):ca(a)?"function"==typeof a?a:v(a,"ELEMENT")?Qb(a.ELEMENT,b):v(a,"WINDOW")?Qb(a.WINDOW,b):ra(a,function(c){return Pb(c,b)}):a}function Rb(a){a=a||document;var b=a.$wdc_;b||(b=a.$wdc_={},b.C=ia());b.C||(b.C=ia());return b}function Ob(a){var b=Rb(a.ownerDocument),c=sa(b,function(d){return d==a});c||(c=":wdc:"+b.C++,b[c]=a);return c}
|
|
74
|
+
function Qb(a,b){a=decodeURIComponent(a);b=b||document;var c=Rb(b);if(!v(c,a))throw new X(10,"Element does not exist in cache");var d=c[a];if(v(d,"setInterval")){if(d.closed)throw delete c[a],new X(23,"Window has been closed.");return d}for(var e=d;e;){if(e==b.documentElement)return d;e.host&&11===e.nodeType&&(e=e.host);e=e.parentNode}delete c[a];throw new X(10,"Element is no longer attached to the DOM");};aa("_",function(){var a=Lb,b=[],c=window||Db;try{a:{var d=a;if(k(d))try{a=new c.Function(d);break a}catch(g){throw g;}a=c==window?d:new c.Function("return ("+d+").apply(null,arguments);")}var e=Pb(b,c.document);var f={status:0,value:Nb(a.apply(null,e))}}catch(g){f={status:v(g,"code")?g.code:13,value:{message:g.message}}}return Mb(f)});; return this._.apply(null,arguments);}).apply(window, arguments);}
|