The post Webdriver | Internet Explorer | Set Proxy Using Testmate appeared first on TestMate.
]]>VBScript
'Initialize the options (Optional but recommended)
Call wd.InitializeInternetExplorerOptions()
'Set HTTP Proxy value in the proxy object
Call wd.SetHTTP_Proxy("localhost:8888")
'Set Proxy for IE
Call wd.SetProxy_InternetExplorerOptions()
'Initialize IE driver (Pass the folder path to driver)
Call wd.InitializeInternetExplorerDriver("C:\Users\selenium")
'Navigate to the URLs
wd.NavigateToUrl("https://www.facebook.com/")
The post Webdriver | Internet Explorer | Set Proxy Using Testmate appeared first on TestMate.
]]>The post Webdriver | Launch Internet Explorer Using Testmate | VBScript appeared first on TestMate.
]]>Vbscript
'Initialize the options (Optional but recommended)
Call wd.InitializeInternetExplorerOptions()
'Set IE options for Initial URL (Optional)
Call wd.InitialBrowserUrl_InternetExplorerOptions("https://www.google.com/")
'Initialize IE driver
Call wd.InitializeInternetExplorerDriver("C:\Users\jaska\Desktop\selenium")
'Send Keys in the search field
Call wd.SendKeys("name::q","Hello World")
'Navigate to the other URL's
wd.NavigateToUrl("https://www.facebook.com/")
The post Webdriver | Launch Internet Explorer Using Testmate | VBScript appeared first on TestMate.
]]>