
FabFly
Active Members-
Posts
24 -
Joined
-
Last visited
Everything posted by FabFly
-
Hi all, I'm using the IE UDF from Dale to write automation script to monitoring response time servers. To do this, i'm writing script to simulate user's behavior. But, my company has bought a new version of a product. The architecture of web pages is now different as before. Web pages are now working with iFrame which are contained frame. I'm not able to initialize my pointers because of iFrame. My script will break because of iFrame. I'm think that the reference is not correct when i'm using the _IEFrameGetObjByName() function. Does anyone have an issue to this problem ? Thanks in advance for your support. Regards, FabFly
-
Hi all, After isolated my _IELoadWait() Error, I've seen that script, sometimes, will not work properly when the workstation which is running the application is locked. My script are compiled and launched by a .net console application. Does anyone has encountered this problem? Regards, FabFly
-
Hi all, @Dale I've included your FuncErr() in my script. That's is the result: I don't understand what does it mean :"> What can I do I I don't call _IELoadWiat directly in my script? Is there another issue? @Cameron When I said that I launched the scripts on the night it's because I'm french and when you're reply it's time for me to leave my office :-D thanks all
-
ok thanks. I've done it. I launched my scripts for tyhis night, I'll see tomorrow if it's great or not. I provide you the update script. Regards, FabFly
-
Thanks a lot for your support. Regards, FabFly
-
Hi, I renamed all my variables in each script with a different name but nothing. The problem is still here. I really don't understand why sometimes the problem occurs and sometimes not. Does anyone have a clue, an idea or a solution. thanks for your support. Regards, FabFly
-
Hi, I've got the same error with a GLOBAL definition. So there is the same problem. Thanks. FabFly
-
Hi, I've done it. I'll give you the result tomorrow. Thanks. FabFly
-
Hi, Indeed, the error appears in the two scripts. But not every time, it looks very strange.. Thanks FabFly
-
Hi all, I wrote a stand alone application with autoIT using IE with IE.au3 but I often have the error message that I provide in the attachement. I don't understand why I've got it but not every time. I give you my script in attachement. Is it my script or IE? Thanks for your support. FabFly robot_bo5_us.au3 File_Ressources_BO5US.au3 IE.au3
-
Launching several autoIT scripts
FabFly replied to FabFly's topic in AutoIt General Help and Support
@Valuater you're right !!!! thanks a lot for your help Thanks to cameronsdad too. Regards, FabFly -
Hi all, I'm using the IE.au3 UDF in my scripts. But when I'm launching several compiled scripts, IE is crashing. How can I lauch several compiled scripts using the same UDF ?? Thanks, FabFly
-
Using XML file to init variables in an AutoIT script
FabFly replied to FabFly's topic in AutoIt General Help and Support
Thanks -
Hi, I precise my problem. With the IE.au3 UDF, if there is one IE page open and the script is beginning its work, the script stops. Each script i've written uses IE.au3. When I try to launch each script in parallel, each of them don't work. But if I launch them sequentially, evrything is fine. Can someone help me ? Thanks in advance. FabFly
-
Hi all, Is there any way to manage multithread progamming in AutoIT script. I explain my case : I've developed a robot to monotor response time server. But, I would like to launch several robots in parallel. Is it possible ? if yes, how can I do this. Thanks for your support. Regards, FabFly
-
_IEFormElementGetObjByName error
FabFly replied to Andrew Peacock's topic in AutoIt General Help and Support
Hi, I had the same problem with the proxy of my company. A proxy receive the http request and rebuilt it. For example, the policy security in my company is the following : 1- the proxy receive the URL 2- the proxy cut the URL and insulate the domain name 3- the proxy debrief the DNS to know where it must send the request 4- the proxy load the page with an URL without the domain name. May be your firewall doing it. Please try it and let me know if you'll solve your problem. Regards, FabFly PS : it's not not an IE.au3 problem. I solved the same problem with this solution. Please look at this thread : http://www.autoitscript.com/forum/index.ph...14entry124214 -
Using XML file to init variables in an AutoIT script
FabFly replied to FabFly's topic in AutoIt General Help and Support
Hi, Thanks for your answers but I don't understand how can I do to use parameters in my XML file. Is there another way like ini file to do what I want ie read parameters in an external file. Thanks for your support. FabFly -
_IEFormElementGetObjByName error
FabFly replied to Andrew Peacock's topic in AutoIt General Help and Support
Hi, Are you behind a proxy ? If yes, don't write the domain name in the URL. I had a similar problem the last week. Please and tell me know if you still have the same problem. FabFly -
Dear all, I've written an AutoIT script which is monitoring server response time. The script is connecting to an intranet web site, making many actions and measuring the time between the begin and the end of the script and insert its in a database. Because the script using the HTTP protocol, many errors can be occured. Initially, I'm a Java, C++ and .NET developer. Therefore I generally do management exceptions like try and catch or anothers things. Does AutoIT have a management exception? If not, I be able to write a .Net or/and C++ DLL or a Java class for the HTTP management exceptions. Does AutoIT supports every languages in an external ressource? if yes, how can I use this DLL or class in my AutoIT script ? Thanks in advance for your responses. Regards, FabFly
-
Hi, I found what was the problem. I'm working on an intranet web site. In my company, there is a proxy. I think that the proxy rewrite the HTTP request according with DNS rules because the problem was in the URL. In effect, I changed the URL and I left the domain in it and now it's working fine. Regards, FabFly
-
Hi, Thanks for your help Dale. Here is my AutoIT code : explanation : The script is developing for a secure intranet web site so i can't give you the url because you can't access it. My AutoIT version is 3.1.1.63 with the good AU3check (v 1.48). In the HTML page, there is 3 frames and the second frame is the interesting one. Here is the source code which display the frames: Here is the source code of the 2nd frame. I would like to click on the following link : "Click here or on the Corporate Documents link in the navigation bar on the left to view the list of the corporate documents available to you." : Here is the full output and error that I recieve : In your example Dale (with the Princeston link) there is no javascript in the page. In my HTML page there is javascript. Do you think that javascript can be the problem? May be it's my autoIT version. I don't know. Thanks in advance for your help. Regards, FabFly
-
dear all, I've got a problem with frames. i read the Dale example for the frame but it doesn't working with my case. the html source code of my html page I think that the problem is the name of the frame because there is not double quote ( " ) so i've got an error : The requested action with this object has failed.: If IsObj($o_object.document.parentwindow.frames ($s_name, $i_index)) Then If ^ ERROR Is anyone has an idea ? Thanks, FabFly Edit: I think it's not the good place for this thread. Sorry
-
hi all, i'm writting an AutoIT script for monitoring server response time. there is an htaccess to connect on the web site. I'm using the IE UDF that i found on the forum. Very nice work! Great! First, I diplay the index page. Second, I click on the login button. Third, the htaccess is appearing. Is anyone knows how I send login and password to the htaccess to allow my script to continue its work? Thanks, FabFly