Hi just trying a very very basic app to test selenium in excel 2003.
I get the error here:
Runtime error -
2146232576(80131700) in excel 2003
internet searches tell me its about missing .net framework issues. But the following Console request suggests ive got all the one i need.
C:\Users\User>reg query "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP"
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP\CDF
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP\v2.0.50727
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP\v3.0
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP\v3.5
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP\v4
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP\v4.0
C:\Users\User>
Can anyone tell me why this is happening?
This is the VBA subroutine:
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