65535 Posted November 6, 2018 Posted November 6, 2018 I am trying to make a autologin script for my CCTV DVR. The values change on the form visibly but not actually passed when the form submits. DVR WEB PAGE CODE: <div class="loginbar"> <div class="logo"><span class="desc"></span></div> <div id="logindesc" class="logindesc">Sign in with your account</div> <div style="height:32px;"> <input type="text" class="inputtip logininputwidth" id="username" ng-model="username"maxlength="32" autocomplete="off" placeholder="{{oLan.username}}" /> </div> <div style="height:32px;margin-top: 10px;"> <input type="password" class="inputtip logininputwidth" id="password" ng-model="password" maxlength="16" placeholder="{{oLan.password}}" /> </div> <div class="login-error"> <div id="ErrorTipdiv" class="inputValidTip" ng-show="szErrorTip!=''"><i class='error'></i><label ng-bind="szErrorTip"></label></div> </div> <div> <button type="button" class="loginbtn" ng-click="login()"><label ng-bind="oLan.login"></label></button> </div> <div class="login-item anonymous" ng-show="anonymous"> <span ng-bind="oLan.anonymous" ng-click="login('anonymous')"></span> </div> RELEVANT SCRIPT CODE: $oIE = _IECreate("http://192.168.5.40") _IELoadWait($oIE, 500) ;Wait for the page to finish loading. $oTag = _IEGetObjById($oIE,"username") $x1 = String("user") ;_IEFormElementSetValue($oTag, $x1) - Tried this way as well. $oTag.value = $x1 _IEAction($oTag,"click") ConsoleWrite("username: " & $oTag & @CR) $x2 = String("password") Local $oTag = _IEGetObjById($oIE,"password") ;_IEFormElementSetValue($oTag, $x2) - Tried this way as well. $oTag.value = $x2 _IEAction($oTag,"click") ConsoleWrite("password: " & $oTag & @CR) On the console I get blanks for username and password. But yet on the page itself the text appears.
dmob Posted November 6, 2018 Posted November 6, 2018 Well for one thing 2 hours ago, 65535 said: ConsoleWrite("username: " & $oTag & @CR) On the console I get blanks for username and password. But yet on the page itself the text appears. That's because $oTag is an object; I doubt you can write it to console. Try ConsoleWrite("username: " & $oTag.value & @CR) just like you set it previously.
65535 Posted November 6, 2018 Author Posted November 6, 2018 Great it shows the proper values with that fix. But now what? Why does the submit button treat it like its invalid?
dmob Posted November 6, 2018 Posted November 6, 2018 Check for @error after every operation, that might help you determine where your script is failing.
65535 Posted November 11, 2018 Author Posted November 11, 2018 Well nothing actually fails. The script completes without errors.
BrewManNH Posted November 11, 2018 Posted November 11, 2018 1 hour ago, 65535 said: Well nothing actually fails. Does it do what you want it to do? If not, then it failed in some way.If it works, then you're done. If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag GudeHow to ask questions the smart way! I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from. Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays. - ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script. - Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label. - _FileGetProperty - Retrieve the properties of a file - SciTE Toolbar - A toolbar demo for use with the SciTE editor - GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI. - Latin Square password generator
careca Posted November 11, 2018 Posted November 11, 2018 Maybe the value is written, but it's the wrong field or something, so no errors in the code, but no effect. Spoiler Renamer - Rename files and folders, remove portions of text from the filename etc. GPO Tool - Export/Import Group policy settings. MirrorDir - Synchronize/Backup/Mirror Folders BeatsPlayer - Music player. Params Tool - Right click an exe to see it's parameters or execute them. String Trigger - Triggers pasting text or applications or internet links on specific strings. Inconspicuous - Hide files in plain sight, not fully encrypted. Regedit Control - Registry browsing history, quickly jump into any saved key. Time4Shutdown - Write the time for shutdown in minutes. Power Profiles Tool - Set a profile as active, delete, duplicate, export and import. Finished Task Shutdown - Shuts down pc when specified window/Wndl/process closes. NetworkSpeedShutdown - Shuts down pc if download speed goes under "X" Kb/s. IUIAutomation - Topic with framework and examples Au3Record.exe
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now