The post Webdriver | Launch Edge Browser Using Testmate | VBScript appeared first on TestMate.
]]>'Intialize edge Options
wd.InitializeEdgeOptions()
'Initialize edge Driver
wd.InitializeEdgeDriver("C:\Users\...\EdgeDriverPath")
'Navigate the URL
wd.NavigateToUrl("https://www.facebook.com/")
'Highlight the control
wd.Highlight("id::email")
'Send Keys in Email textbox
Call wd.SendKeys("id::email","abc")
'Send keys in Password
Call wd.SendKeys("id::pass","hello")
The post Webdriver | Launch Edge Browser Using Testmate | VBScript appeared first on TestMate.
]]>