diff options
| author | Matth?us G. Chajdas <dev@anteru.net> | 2019-11-10 13:56:53 +0100 |
|---|---|---|
| committer | Matth?us G. Chajdas <dev@anteru.net> | 2019-11-10 13:56:53 +0100 |
| commit | 1dd3124a9770e11b6684e5dd1e6bc15a0aa3bc67 (patch) | |
| tree | 87a171383266dd1f64196589af081bc2f8e497c3 /tests/examplefiles/autoit_submit.au3 | |
| parent | f1c080e184dc1bbc36eaa7cd729ff3a499de568a (diff) | |
| download | pygments-master.tar.gz | |
Diffstat (limited to 'tests/examplefiles/autoit_submit.au3')
| -rw-r--r-- | tests/examplefiles/autoit_submit.au3 | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/tests/examplefiles/autoit_submit.au3 b/tests/examplefiles/autoit_submit.au3 deleted file mode 100644 index 84fb7150..00000000 --- a/tests/examplefiles/autoit_submit.au3 +++ /dev/null @@ -1,27 +0,0 @@ -#include <IE.au3>
-;http://msdn.microsoft.com/en-us/library/Aa752084.aspx
-$ourl="http://localhost:5000/"
-
-$oIE = _IEAttach ($ourl,"url")
-If @error = $_IEStatus_NoMatch Then
- $oIE = _IECreate ($ourl & "sample.html")
-endIf
-
-$oForm = _IEFormGetObjByName ($oIE, "form1")
-;username, call DOM directly
-$oIE.document.getElementById("username").value="helloAutoIT"
-;state select
-$oSelect = _IEFormElementGetObjByName ($oForm, "state")
-_IEFormElementOptionSelect ($oSelect, "S2", 1, "byText")
-;options raido
-_IEFormElementRadioSelect($oForm, "2nd", "type", 1, "byValue")
-
-#cs
-ConsoleWrite(@Error)
-Sleep(10000)
-#ce
-_IEFormSubmit($oForm, 0)
-_IELoadWait($oIE)
-Sleep(60000)
-_IEQuit($oIE)
-
|
