Custom action to send user to specific URL

Hey there :slight_smile:

In my story I would like to send the user to a URL in case he confirms that he wants to be sent there. So the dialogue could look like this:

  • Bot: Should I send you to the following page?
  • User: Yes
  • Bot: # sends user to specific URL in the user’s browser (same tab)

Is it possible to realise this with a custom action by the bot? I don’t have a programming background, so I am stumbling a bit. At the moment I am trying to solve this with webbrowser.open(‘https://www.google.com’). Might this be a good approach?

Thanks in advance!