Skip to content

Instantly share code, notes, and snippets.

@erajanraja24
Created April 10, 2016 09:36
Show Gist options
  • Save erajanraja24/2fe30116da4cd87c94e01e743e7dcd38 to your computer and use it in GitHub Desktop.
Save erajanraja24/2fe30116da4cd87c94e01e743e7dcd38 to your computer and use it in GitHub Desktop.
Selenium in Excel VBA
Sub check()
'Initialize the Firfox Driver
Dim driver As New FirefoxDriver
'Navigate to Google web page
driver.Get ("https://www.google.co.in")
'Maximize the Firefox driver
driver.Window.Maximize
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment