'===================================================================================
'Function Name : Invoke Browser
' Created By :Jai
' Description : invoke the browser specified and close all the existing browsers
'Parameters :Url,Broser Type(IE,FF)
' Created : Oct 16 08
'===================================================================================
'Notes : If not specified the browser type Netscape...will be Invoke
'===================================================================================
Function InvokeBrowser (sURL, sBrowser)
SystemUtil.CloseProcessByName("iexplore.exe")
wait 0,500
SystemUtil.CloseProcessByName("firefox.exe")
wait 0,500
SystemUtil.CloseProcessByName("netscp6.exe")
wait 0,500
If UCase(sBrowser) = "IE" Then
SystemUtil.Run "iexplore.exe", sURL
wait 2
Window("regexpwndtitle:=Windows Internet Explorer").Maximize
ElseIf UCase(sBrowser) = "FF" Then
SystemUtil.Run "firefox.exe", sURL
wait 2
Else
SystemUtil.Run "netscp6.exe", sURL
End If
End Function
'Function Name : Invoke Browser
' Created By :Jai
' Description : invoke the browser specified and close all the existing browsers
'Parameters :Url,Broser Type(IE,FF)
' Created : Oct 16 08
'===================================================================================
'Notes : If not specified the browser type Netscape...will be Invoke
'===================================================================================
Function InvokeBrowser (sURL, sBrowser)
SystemUtil.CloseProcessByName("iexplore.exe")
wait 0,500
SystemUtil.CloseProcessByName("firefox.exe")
wait 0,500
SystemUtil.CloseProcessByName("netscp6.exe")
wait 0,500
If UCase(sBrowser) = "IE" Then
SystemUtil.Run "iexplore.exe", sURL
wait 2
Window("regexpwndtitle:=Windows Internet Explorer").Maximize
ElseIf UCase(sBrowser) = "FF" Then
SystemUtil.Run "firefox.exe", sURL
wait 2
Else
SystemUtil.Run "netscp6.exe", sURL
End If
End Function
Comments