Setzt den Wert (value) eines Elements
#Include <FF.au3>
_FFSetValue($sValue, $sElement[, $sMode = "elements"[, $iIndex = 0]])
Parameters
$sValue | Neuer Inhalt | ||||||||||||
$sElement | Element oder Objekt | ||||||||||||
$sMode |
|
||||||||||||
$iIndex | Optional: Index bei $sMode: class, name, tag 0 = (Default) |
Return Value
Success: | Returns 1 |
Failure: | Returns 0 and sets @ERROR |
@ERROR: |
0 ($_FF_ERROR_Success) 4 ($_FF_ERROR_InvalidValue) 8 ($_FF_ERROR_NoMatch) |
Remarks
Related
_FFSetValue, _FFXPath
Example
#Include <FF.au3> If _FFStart("http://ff-au3-example.thorsten-willert.de/", Default, 2) Then _FFSetValue("Max Mustermann", "user", "id") _FFSetValue("My_Password", "pass", "id") _FFDisConnect() EndIf