Open
Description
Common actions like opening a specific window, performing something specific, etc. can be automatized. We can do this by providing user a page for his custom actions / shortcuts. The shortcuts can be made via small building blocks like keypress
, keydown
, keyup
, type
, etc. A good small use-case for this is:
Different people have different ways in which they watch Netflix. Some may have an app installed. While other may be opening it in their browser. So, a shortcut like "Open netflix" can be customized as follows:
Option 1. keypress(winleft) > type("netflix") > keypress(enter)
Option 2. keypress(winleft) > type("firefox") > keypress(enter) > type("netflix") > keypress(enter)