Selenium basic issue

linkcode

New member
hi i dont know how to use selenium basic with secure workbook.

my case :
selenium basic installed pc , no comp. file with secure book

result
selenium basic browser (crome and brave) crash after open. macro not respond.


how can i fix that ?
 
Last edited:
both. its some kind of lib which open browser and automate it. because of this its only works or invoke with vba.
 
Last edited:
Try adding this code before invoking Selenium:
Code:
Dim XLSPadlock As Object
Set XLSPadlock = Application.COMAddIns("GXLS.GXLSPLock").Object
XLSPadlock.SetOption Option:="2", Value:="0"
XLSPadlock.SetOption Option:="1", Value:="1"
 
We’ll have an update for our virtualization system in the next release of XLS Padlock 2024.2. Hopefully, this will fix your issue.
 
Back
Top