Jump to content

button submit


jorge
 Share

Recommended Posts

Hi,

I have this scripts:

#include <IE.au3>
_Siec_SendSMS("number_fon", "text")
Func _Siec_SendSMS($sOdbiorcy, $sTresc)
$oIE = _IEAttach("https://link_url", "URL")
$oForm = _IEGetObjByName($oIE, "editableSmsComposeForm")
$oRecipients = _IEFormElementGetObjByName($oForm, "recipients")
$oContentIn  = _IEFormElementGetObjByName($oForm, "content_in")
$oContentOut = _IEFormElementGetObjByName($oForm, "content_out")
$oSubmit = _IEGetObjById($oForm, "submitbtn")
_IEFormElementSetValue($oRecipients, $sOdbiorcy)
_IEFormElementSetValue($oContentIn,  $sTresc)
_IEFormElementSetValue($oContentOut, $sTresc)
_IEAction($oSubmit, "click")
Sleep(5000)
$oIE = _IEAttach("https://link_url", "URL")
$oForm = _IEGetObjByName($oIE, "editableSmsComposeForm")
$oSubmit = _IEGetObjById($oForm, "yesLink")
_IEAction($oSubmit, "click")
EndFunc

Why only complements number_fon and text? Should react on _IEAction($oSubmit, "click"), but nothing happens...Why this not work?

I use IE 9

Link to comment
Share on other sites

You'll need latest AutoIt beta for a relevant fix.

Dale

Free Internet Tools: DebugBar, AutoIt IE Builder, HTTP UDF, MODIV2, IE Developer Toolbar, IEDocMon, Fiddler, HTML Validator, WGet, curl

MSDN docs: InternetExplorer Object, Document Object, Overviews and Tutorials, DHTML Objects, DHTML Events, WinHttpRequest, XmlHttpRequest, Cross-Frame Scripting, Office object model

Automate input type=file (Related)

Alternative to _IECreateEmbedded? better: _IECreatePseudoEmbedded  Better Better?

IE.au3 issues with Vista - Workarounds

SciTe Debug mode - it's magic: #AutoIt3Wrapper_run_debug_mode=Y

Doesn't work needs to be ripped out of the troubleshooting lexicon. It means that what you tried did not produce the results you expected. It begs the questions 1) what did you try?, 2) what did you expect? and 3) what happened instead?

Reproducer: a small (the smallest?) piece of stand-alone code that demonstrates your trouble

Link to comment
Share on other sites

The latest BETA () is needed.

Edited by water

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (NEW 2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Link to comment
Share on other sites

Check the_IEBodyWriteHTML, _IEDocWriteHTML, _IEDocInsertHTML and _IEHeadInsertEventScript functions.

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (NEW 2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Link to comment
Share on other sites

but how i can view code, typing http://test.com/code.html?

As I add

$sHTML = $sHTML & '<textarea id ="textSMS" name="textSMS" cols="5" style="margin-left:0px; width: 500px; height: 124px; font-size:small;">' & $Message & '</textarea><br/>'

I must compile code to file.exe that work.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...