Created
April 10, 2016 09:36
-
-
Save erajanraja24/2fe30116da4cd87c94e01e743e7dcd38 to your computer and use it in GitHub Desktop.
Selenium in Excel VBA
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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