<button/> vs. <input type=submit/>

80 views
Skip to first unread message

TangoNetworks

unread,
Jan 5, 2011, 12:55:42 PM1/5/11
to watij
I have a page with 2 text inputs:

<input type="text" value="" class="loginForm" id="field1" size="32"
tabindex="1" maxlength="32" name="username">
<input type="password" class="loginForm" value="" size="32"
tabindex="2" maxlength="32" name="password">

and two buttons:

<input type="submit" value="Submit" tabindex="3" name="bSubmit">
<input type="submit" value="Clear" tabindex="4" name="bSubmit">

Here's my code:

inputCount = ie.find("input").with("type","submit").all().length()
print "inputCount [%d]"%inputCount

buttonCount = ie.find("button").all().length()
print "buttonCount [%d]"%buttonCount

Design has implemented buttons about 12 different ways. Test has 1
method to click a button, so I have to interrogate all instances of
"button" on a page and check the id, name, value, text ... etc. to
make sure Test is clicking the correct button.

The code gives me the desired result, however also throws the
following exceptions (below). It seems to only occur when i call
find("button") when there are no <button/> tags.

Thoughts? Thanks!
-Chris

- Executing command: "C:\DOCUME~1\trey\LOCALS~1\Temp
\JExplorer32.2.2.10.exe" "C:\DOCUME~1\trey\LOCALS~1\Temp
\JExplorer32.2.2.10.dll" {8A3003A3-FF4C-4727-83A9-F1DC1F9CB212}
inputCount [2]
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix6[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix8[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix10[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix12[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix14[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix16[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix18[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix20[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix22[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix24[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix26[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix28[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix30[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix32[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix34[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix36[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix38[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix40[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix42[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix44[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix46[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix48[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix50[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix52[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix54[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix56[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix58[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix60[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix62[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix64[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix66[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix68[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix70[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix72[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix74[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix76[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix78[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix80[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix82[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix84[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix86[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
- An error has occurs during execution JavaScript code with the
following content: elementForWatix = watix88[0];if
(elementForWatix.tagName == 'IFRAME' || elementForWatix.tagName ==
'FRAME') {if (elementForWatix.contentDocument) { elementForWatix =
elementForWatix.contentDocument;} else { elementForWatix =
elementForWatix.contentWindow.document;}}watix4 =
elementForWatix.getElementsByTagName('button');watix4.length > 0;
com.jniwrapper.win32.com.ComException: COM object method returns error
code: 0x80020101; Description: Could not complete the operation due
to error 80020101.
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
743)
at
com.jniwrapper.win32.com.impl.IUnknownImpl.invokeStandardVirtualMethod(SourceFile:
722)
at
com.jniwrapper.win32.mshtml.impl.IHTMLWindow2Impl.execScript(Unknown
Source)
at com.jniwrapper.win32.ie.gj.execute(Unknown Source)
at com.jniwrapper.win32.ie.cv.run(Unknown Source)
at com.jniwrapper.win32.MessageLoopThread
$ThreadSynchronizedAction.run(MessageLoopThread.java:566)
at com.jniwrapper.win32.MessageLoopThread
$LoopThread.run(MessageLoopThread.java:508)
buttonCount [0]
done

Brian Knorr

unread,
Jan 5, 2011, 3:18:48 PM1/5/11
to watij
What version of IE are you testing against? ...also would you mind
grabbing the latest from svn, I made some finding fixes in there and
am curious if it helps.

TangoNetworks

unread,
Jan 6, 2011, 10:20:00 AM1/6/11
to watij
I loaded the new version.

I ran on XP IE7 and Win7 IE8 and got the exceptions on both.

-C
> ...
>
> read more »

Brian Knorr

unread,
Jan 6, 2011, 10:42:00 AM1/6/11
to watij
Is this actually causing your test to fail or halt? Because I can run
the same thing - find("button").all.length() on a page without a
button and I can see that there is a javascript error, but it just
passes over it. It's because you are calling all.length() on
something that doesn't exist. Right now WebSpec doesn't force
exists() when calling length()...would you rather it through and
exception like "tag must exist before calling all (or length)" ???
> ...
>
> read more »

TangoNetworks

unread,
Jan 6, 2011, 10:56:03 AM1/6/11
to watij
The test runs, completes and gives me the desired result.

If I'm reading your post correctly, I should be able to test with
exists() before calling all() and that should give me what I need.

This code:

if ie.find("button").exists():
buttonCount = ie.find("button").all().length()
print "buttonCount [%d]"%buttonCount

Still gives me the same exceptions.

I don't have a preference at all, I'm just trying to understand the
issue so I can prevent my users from seeing the wall of exceptions.

-C
> ...
>
> read more »

Brian Knorr

unread,
Jan 6, 2011, 12:54:15 PM1/6/11
to watij
I just checked in a fix for this...please get the latest from svn and
let me know the results.

Thanks,

Brian
> ...
>
> read more »

TangoNetworks

unread,
Jan 7, 2011, 10:42:27 AM1/7/11
to watij
That worked! thanks!
-C
> ...
>
> read more »
Reply all
Reply to author
Forward
0 new messages