您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

index.rst 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. TagUI
  2. =================================
  3. .. image:: _static/tagui-logo.png
  4. :width: 400px
  5. A free, open-source, cross-platform RPA tool that helps you automate your desktop, web, mouse and keyboard actions easily. Here's what a simple TagUI flow looks like:
  6. .. code-block:: none
  7. // below is an example to login to Xero accounting website
  8. https://login.xero.com/identity/user/login
  9. type email as user@gmail.com
  10. type password as 12345678
  11. click Log in
  12. .. code-block:: none
  13. // besides web identifiers, images of UI elements can be used
  14. type email_box.png as user@gmail.com
  15. type password_box.png as 12345678
  16. click login_button.png
  17. .. code-block:: none
  18. // (x,y) coordinates of user-interface elements can also be used
  19. type (720,400) as user@gmail.com
  20. type (720,440) as 12345678
  21. click (720,500)
  22. .. toctree::
  23. :maxdepth: 1
  24. :caption: Contents:
  25. :hidden:
  26. Installation <setup>
  27. Main concepts <main_concepts>
  28. Advanced concepts <advanced>
  29. Reference <reference>
  30. Tools <tools>
  31. FAQ <faq>
  32. :doc:`Download TagUI v6.46 here </setup>`.