Hi everyone,
I'm using Silktest WorkBench 13.5, WIndows 7 64 bits and vb .net
I have four browsers opened at same time, I can't get toggle between theirs from SilkTest, how can I get a correctly interaction with all browsers opened
I using this lines:
(This get interacction with the first one page, but the second page doesn't work)
Shell("C:\Archivos de programa\Internet Explorer\iexplore.exe " & "http://www.mypage1.com/", vbMaximizedFocus)
System.Threading.Thread.Sleep(15000)
With _desktop.BrowserApplication("webBrowser")
.SetActive
With .BrowserWindow("browserWindow")
.DomLink("Quiénes Somos").Click
End With
End With
Shell("C:\Archivos de programa\Internet Explorer\iexplore.exe " & "http://www.mypage2.com/", vbMaximizedFocus)
System.Threading.Thread.Sleep(15000)
With _desktop.BrowserApplication("webBrowser")
.SetActive
With .BrowserWindow("browserWindow")
.DomLink("search").Click
End With
End With
Thanks in advanced