Link Search Menu Expand Document

arena-py API v0.9.6

arena.attributes.goto_url

GotoUrl attribute class to manage its properties in the ARENA: Load new URL when object is clicked. Requires click-listener. Usage: goto_url=GotoUrl(...)

Parameters
  • str dest: Where to open the URL. Allows [popup, newtab, sametab] Defaults to 'sametab' (optional)
  • str on: A case-sensitive string representing the event type to listen for. See <https: //developer.mozilla.org/en-US/docs/Web/Events> Web Events. Allows [mousedown, mouseup] Defaults to 'mousedown' (optional)
  • str url: The destination url, e.g. https: //example.com. (optional)
GotoUrl(url, dest='static', on='mousedown', **kwargs)