Ram
Active Members-
Posts
152 -
Joined
-
Last visited
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
Ram's Achievements
Prodigy (4/7)
0
Reputation
-
Sure.
-
I am trying to get it from an Excel file, but for now, I want to try it out with one email. Recently, Google sent an email about the Google account Inactivity policy; I think if a particular account is not logged in before December 1st they will deactivate the account. I have like 10 different accounts + I have my workspace account to manage hence I am trying to do faster and not waste time by logging in, etc. Tried it using Python but I wasn't able to login further because of automation detection. Thanks!
-
I have a few sets of Gmail usernames and passwords. I would like to put this in Excel and login automatically and then logout. So, to do this, I tried the following: include <IE.au3> $sEmail = 'myemail@gmail.com' $sPassword = 'mypassword' $oIE = _IECreate("https://accounts.google.com/v3/signin/identifier?continue=https%3A%2F%2Fmail.google.com%2Fmail%2Fu%2F0%2F&emr=1&followup=https%3A%2F%2Fmail.google.com%2Fmail%2Fu%2F0%2F&ifkv=AXo7B7XEtHvS8E8suL3AtSORCeEhHobAax8QWPWZFECFcts4FxgLwEO_NyB8UzC88KmQlJgseWt6Ww&osid=1&passive=1209600&service=mail&flowName=GlifWebSignIn&flowEntry=ServiceLogin&dsh=S-703882919%3A1692811483921521#inbox") GMailSubmitFormElement($oIE, 'identifier', $sEmail) GMailSubmitFormElement($oIE, 'password', $sPassword) Sleep(10000) _IEQuit($oIE) Func GMailSubmitFormElement($oIE, $sElement, $sValue, $iTimeout = 10, $iDelay = 1) $Timer = TimerInit() Do $oForm = _IEFormGetCollection($oIE, 0) $oElement = _IEFormElementGetObjByName($oForm, $sElement) Sleep($iDelay * 1000) Until IsObj($oElement) Or TimerDiff($Timer) >= $iTimeout * 1000 _IEFormElementSetValue($oElement, $sValue) $oViewContainer = _IEGetObjById($oIE, 'view_container') $oSpans = _IETagNameGetCollection($oViewContainer, 'span') If IsObj($oSpans) Then For $oSpan In $oSpans If StringInStr($oSpan.innerText, 'Next') Then Sleep(5000) ; Add a delay of 5 seconds before clicking "Next" $oParentElement = $oSpan.parentElement _IEAction($oParentElement, 'click') ; Click the parent element of the span ExitLoop EndIf Next EndIf EndFunc The username is entered properly, but the script is not able to find the "Next" text button. So the script keeps giving the below warning and error message. How to fix this? Let me know! Thanks!
-
Hi, Is it possible for you to share the full script you have tried for the new Gmail method? Thanks!
-
Hi, I was using the below Gmail script that used to login to my Gmail and password automatically using IE. After the new type of login method in Gmail. I am not able to do it using the below code. Has anyone tried on the auto login script for Gmail for latest Gmail login method? Global $oIE =_IECreate ("https://accounts.google.com/ServiceLogin?sacu=1&continue=http%3A%2F%2Fmail.google.com%2Fmail%2F%3Fpc%3Dtopnav-about-en&hl=en&service=mail") local $username = _IEGetObjByName ($oIE, "Email") Local $password = _IEGetObjByName ($oIE, "Passwd") Local $Email_button = _IEGetObjByName ($oIE, "Email") Local $Signin_button = _IEGetObjByName ($oIE,"signIn") _IEFormElementSetValue ($username, "mygmailaddress@gmail.com") _IEFormElementSetValue ($password, "mygmailpassword") _IEAction ($Email_button, "click") _IEAction ($Signin_button, "click") if so can someone help me with this? Thanks!
-
Hi, I am running windows 7 ultimate - I have bluetooth speaker and the normal wired speakers. I want to change my speakers output settings from normal wired speakers to bluetooth speakers and vice versa automatically. instead of me going to selecting the speakers in the control panel - because sometimes I forget to do it. Can this be done? if so can somebody help me out on this please? I want to do this in a given scheduled time (This is can be achieved using scheduler programs in Windows 7) Awaiting your response! Thanks!
-
Great.. Thanks! It helped me out..
-
Hi, I am looking for a way to create specific folder name from a given file name. File name format is like: MJ - justbeatit.mp3 I want the folder name to be MJ. (that is characters before " - " is the folder name) The above can be done using "StringRegExp" but I don't know the syntax. Can somebody help me out please. Thanks!
-
Redirect URL to specific url on my computer
Ram replied to Ram's topic in AutoIt General Help and Support
Thanks for the help installing plugins and working on it ...is lot of work. I guess this time AutoIT can't me help with this... -
Redirect URL to specific url on my computer
Ram replied to Ram's topic in AutoIt General Help and Support
what do you mean by saying "navigate to the file in your web browser" - does it mean I doing something manually if so the idea is that.. when ever i enter google.comon my address bar - it should automatically redirect me to plus.google.com. -
Hi, I am looking for a way to do the following: For example: I open a browser (say Fire Fox, IE or Chrome) in the address bar I type www.google.com and press enter automatically the url should be redirected to plus.google.com Is this possible? I am trying to do this using HOST file on my computer but the problem is that HOST files accept only IP address so the subdomain url don't have the actual iP address hence I can't do it with HOST file. Can the above scenario be achieved using autoitscript? if so how do I go about doing this? Thanks!
-
I don't want to rename a single file... I want it to be compressed the folder and then renamed it to cbz. Like I want to rename the whole folder to .cbz.. say myPictures folder to myPictures.cbz - that is how cbz formats are meant to be...
-
Hi, I have 600 flles of png files. I want to select all them and compress the file and rename the file as *.cbz. so that I will be able to view it as book on my iPad. For e.g Mypictures folder has - 600 png files. Compress them to zip and rename them to cbz. or from mypictures folder there a way to compress the whole folder to *.cbz directly. Is the above possible ?? if so how - can you direct me to the right place? Awaiting your response!
-
How to determine the screen size (X, Y values)
Ram posted a topic in AutoIt General Help and Support
I am trying printscreen that is shown on a window. I am using " _ScreenCapture_Capture " to achieve the goal but the issue is that I have to execute the code always to check the output and then change the values of ileft, iright, ibottom, itop to get the perfect result. Is there a easy way to get the x and y values for getting the perfect screen shot in the first run? Awaiting your response! Thanks! -
wow. This is also worked. Thanks a lot kylomas. I changed few things and written my own code and works just fine!! It is Strange the code editor is giving issues when posting!!