Skip to content

Instantly share code, notes, and snippets.

@Tset-Noitamotua
Last active August 15, 2019 12:24
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Tset-Noitamotua/22e9edaade89e52fb10fcefd51a4547b to your computer and use it in GitHub Desktop.
Save Tset-Noitamotua/22e9edaade89e52fb10fcefd51a4547b to your computer and use it in GitHub Desktop.
HOW TO use Robot Framework with ATOM code editor

HOW-TO use Robot Framework with ATOM code editor

TL;DR

Install Atom and then in your favorite console / terminal install the required plugins:

apm install language-robot-framework
apm install autocomplete-robot-framework
apm install hyperclick
apm install hyperclick-robot-framework

Your are done! Enjoy using RF in Atom!

Step by Step Instructions

  • Install Atom
  • Make sure apm is on PATH if you want to install Atom plugins with it. It is if you call apm --version in console and get something like this (ignore version numbers - they'll probably be outdated when you read this):
   > apm --version
   apm  1.15.3
   npm  3.10.5
   node 4.4.5 ia32

Your are done!

@patsplat
Copy link

There's a typo on line 6:

apm install autocomplete-robot-framewor

Pretty sure this should be apm install autocomplete-robot-framework

Thanks for the gist!

@Tset-Noitamotua
Copy link
Author

@patsplat Typo removed. Thanks for hint!

@gliviu
Copy link

gliviu commented Dec 13, 2017

I would also add Script package which let us run a robot script via ctrl-shift-b shortcut

@zastress
Copy link

zastress commented May 14, 2018

@Tset-Noitamotua Is there a way to make Atom recognize *.txt files as robot format? Currently, it only highlights syntax for *.robot files.

@basic-settings
Copy link

@zastress robot-framework plans to deprecate all other formats except *.robot so you might want to keep an eye out for that

robotframework/robotframework#2820

@lenico
Copy link

lenico commented Nov 8, 2018

Is there a way to run Robot Framework from ATOM?
I found the "Build" package in Atom, but i'm not sure how to add Robot Framework to it. I understand I need to add a ".atom.build.json" but I'm not sure where to start.

Have you already tried?

@ruchigupta19
Copy link

ruchigupta19 commented Mar 28, 2019

Is there a way to make Atom recognize .rst files as robot format? Its easy to read .robot files using RIDE but I couldn't read .rst

@Tset-Noitamotua
Copy link
Author

Is there a way to run Robot Framework from ATOM?

@lenico You may want to have a look at Script mentioned above by @gliviu

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment