Category: Internet Explorer

Webdriver | Internet Explorer | Set Proxy Using Testmate

To launch Internet Explorer with a proxy, use the following code in Testmate: VBScript 1 2 3 4 5 6 7 8 9 10 11 12 13 14 '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()  

Webdriver | Launch Internet Explorer Using Testmate | VBScript

The below code launch the internet explorer ,navigates the URL and perform some search operations. The path to IE driver server is passed in the InitializeInternetExplorerOptions method. Vbscript 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15   'Initialize the options (Optional but recommended) Call wd.InitializeInternetExplorerOptions()   'Set IE