RaviJ 0 Posted October 27, 2010 (edited) Hi, I am calling following autoIt script with selenium expandcollapse popup#include <file.au3> AutoItSetOption("WinTitleMatchMode","2") _Log("----new session----") if $CmdLine[0] < 2 then ; Arguments are not enough msgbox(0,"Error","Supply all the Arguments, Browser name and path to upload") _Log("Arguments are wrong") Exit EndIf ;Actiate firefox/IE browser If (StringCompare($CmdLine[1],"firefox",0) = 0) Then $title = WinGetTitle("Mozilla Firefox") ; retrives whole window title _Log("FireFox selected") ElseIf (StringCompare($CmdLine[1],"ie",0) = 0) Then $title = WinGetTitle("Windows Internet Explorer") _Log("IE selected") Else Exit EndIf $hResult = WinActivate($title); If($hResult == 0) Then _Log("Unable to find "&$title) Else _Log($title&" activated") EndIf Sleep(2000) ;Handling of Request Authentication pop up if visible if WinWait("Request Authentication","",20) Then $hResult = WinActivate("Request Authentication"); If($hResult == 0) Then _Log("Unable to find Request Authentication") Else _Log("Request Authentication activated") EndIf sleep(1000) Send("{ENTER}") EndIf ;mouse click for enable open dialog box Sleep(20000) MouseClick("left", 370, 494, 2) ;open dialog WinWait("Open") $title = WinGetTitle("Open") ; retrives whole window title WinActivate($title) WinWaitActive($title) Sleep(1000) $fullpath = $CmdLine[2] Send($fullpath) Sleep(1000) Send("{ENTER}") ;used for logging Func _Log($sLogMsg) _FileWriteLog(@ScriptDir & "\AutoItLog.log",$sLogMsg) EndFunc In java code as : dialog = new String[]{ "MultiFileUpload1.exe","firefox","E:\\Shared" }; Runtime.getRuntime().exec(dialog); Thread.sleep(50000); // Need other solution (1) Everything is fine except (1). I need to provide sleep for 50 sec. because i am not able to identify when autoIt script finish using java So i have added fix maximum number of seconds when my script will finish. If anyone known other solution for getting how to know that script is executing or not finish. Thanks, Ravi Edited October 27, 2010 by RaviJ Share this post Link to post Share on other sites
RaviJ 0 Posted October 27, 2010 Thread.sleep(50000); // Need other solution (1) I have got another workaround for it. The another solution is : int count = 0; while (isProcessRunning("MultiFileUpload.exe") && count <= 50) { Thread.sleep(1000); // like WinWaitActive count++; } public static boolean isProcessRunning(String processName) { try { String line; Process p = Runtime.getRuntime().exec("tasklist /FI \"IMAGENAME eq " + processName + "\""); BufferedReader input = new BufferedReader(new InputStreamReader(p.getInputStream())); while ((line = input.readLine()) != null) { if (line.contains(processName)) { input.close(); return true; } } input.close(); // the process was not found } catch (Exception err) { err.printStackTrace(); } return false; } Copy from the following post : #837631 Thanks, Ravi Share this post Link to post Share on other sites
icoboy 0 Posted October 20, 2011 hi, is it possible to call an autoit script using selenium with format of html? how? thanks. Share this post Link to post Share on other sites
madhuri 0 Posted June 6, 2013 I have got another workaround for it. The another solution is : int count = 0; while (isProcessRunning("MultiFileUpload.exe") && count <= 50) { Thread.sleep(1000); // like WinWaitActive count++; } public static boolean isProcessRunning(String processName) { try { String line; Process p = Runtime.getRuntime().exec("tasklist /FI \"IMAGENAME eq " + processName + "\""); BufferedReader input = new BufferedReader(new InputStreamReader(p.getInputStream())); while ((line = input.readLine()) != null) { if (line.contains(processName)) { input.close(); return true; } } input.close(); // the process was not found } catch (Exception err) { err.printStackTrace(); } return false; } Copy from the following post :#837631 Thanks, Ravi Hi Ravi, Is it possible to pass the parameter from selenium to autoit script?? If yes please reply. Thanks. Share this post Link to post Share on other sites
ankit14 0 Posted July 4, 2013 (edited) I would also like to know the same thing , can we pass some value from selenium to Autoit and vice versa. Edited July 4, 2013 by ankit14 Share this post Link to post Share on other sites
water 2,420 Posted July 4, 2013 Did you search the forum? I got 88 hits when looking for "selenium". BTW: Don't post the same question on multiple threads. Start a new thread - you will get much more replies. My UDFs and Tutorials: Spoiler UDFs:Active Directory (NEW 2021-04-14 - Version 1.5.3.0) - Download - General Help & Support - Example Scripts - WikiOutlookEX (NEW 2021-04-13 - Version 1.6.4.0) - Download - General Help & Support - Example Scripts - WikiOutlookEX_GUI (NEW 2021-04-13 - Version 1.4.0.0) - DownloadOutlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - WikiExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example ScriptsPowerPoint (2017-06-06 - Version 0.0.5.0) - Download - General Help & SupportExcel - Example Scripts - WikiWord - WikiTask Scheduler (2019-12-03 - Version 1.5.1.0) - Download - General Help & Support - WikiTutorials:ADO - Wiki, WebDriver - Wiki Share this post Link to post Share on other sites
akashgupta 0 Posted January 26, 2016 how to return a autoit function value in selenium script like return true or false Share this post Link to post Share on other sites
akashgupta 0 Posted January 26, 2016 if WinWait("Request Authentication","",20) Then $hResult = WinActivate("Request Authentication"); If($hResult == 0) Then _Log("Unable to find Request Authentication") how we will return this log value in our selenium script for validation purpose Share this post Link to post Share on other sites
TheDcoder 1,245 Posted January 26, 2016 @akashgupta Do you realize that this thread 6 years old? Please start a new thread, you will get much more replies. EasyCodeIt - A cross-platform AutoIt implementation DcodingTheWeb Forum - Follow for updates and Join for discussion Share this post Link to post Share on other sites