I have set up a piece of Python code that gets triggered by a webhook.When I test run the Python code I do not get any error. Also, the Zap has been triggered a few time now without logging any error. However, nothing happens as a result of the Python code. My goal is pretty simple: to open a certain file in a google Chrome tab. The code I have written is this:
import webbrowser webbrowser.open( 'file:///D:/DESCARGAS/ui.vision.html?direct=1¯o=MESbuy')
Could anyone advice as to what is wrong? My python knowledge is limited. Also. I do not need this to be working in Python; I would be happy too if it is done using Java.