Open GoogleCodeExporter opened 8 years ago
The new version can now be installed without privileges.
It's also possible to use it in Excel without registration, but you'll have to
use a custom
function to create objects and add mscorlib as a reference:
Const NETDLL = "..\Selenium.dll"
Function CreateObject2(typeName As String) As Object
Static domain As mscorlib.AppDomain
If domain Is Nothing Then
Dim host As New mscoree.CorRuntimeHost
host.Start
host.GetDefaultDomain domain
End If
Set CreateObject2 = domain.CreateInstanceFrom(NETDLL, typeName).Unwrap
End Function
To get the libraries, you can either build the project or extract them from the
setup.
Be also aware that the project has moved to GitHub:
http://florentbr.github.io/SeleniumBasic
Original comment by florentbr
on 21 Jul 2015 at 7:47
Original issue reported on code.google.com by
pratik.r...@gmail.com
on 13 May 2015 at 6:44