Skip to content

Commit 3bca4c1

Browse files
Add structure
Headings help readers by breaking up and categorizing the various paragraphs. I also removed a redundant section.
1 parent c75ab9b commit 3bca4c1

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed

exercises/00-getting-started.md

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,29 +28,31 @@ local copy of the repo.
2828

2929
## Install Robot Framework
3030

31+
### Using `pip`
3132
In order to run Robot Framework test cases we're going to need install Robot Framework. We install this by
3233
using `pip`. Usually you install something by calling `pip3 install <package_name>`, but if you are
3334
using a virtual environment, or have an alias defined, you can try `pip install <package_name>` instead.
3435

35-
Install Robot Framework: `pip3 install robotframework`.
36+
### Installing Robot Framework
37+
Run `pip3 install robotframework`
3638

3739
To check that it was installed, run the `robot --help` command. The output should include Robot Framework version number and some other helpful stuff,
3840
including the command line options (which are also available [here](http://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#all-command-line-options)).
3941

40-
To run automated test cases for web UIs, the current go-to library is the Browser-library.
41-
42-
Install Browser: `pip3 install robotframework-browser`. After the installation has completed successfully,
43-
the library has to be initialized by running `rfbrowser init`.
44-
45-
In order to ensure that you've done exercises as expected we need you to install robotframework-lint
42+
### Consistency Helper
43+
In order to ensure that you've done exercises as expected let's install the "robotframework-lint"
4644
tool. A linting tool is a lightweight static analysis tool to verify that you and your team are doing
4745
your code consistently.
4846

49-
Install Robot Framework linter: `pip3 install robotframework-lint`.
47+
To install the linter, run `pip3 install robotframework-lint`
48+
49+
### Testing in the Browser
50+
Robot Framework can test anything if you give it the right library. To run automated test cases for web UIs, we'll use the "Browser" library.
5051

51-
## Install NodeJS
52+
To install this "Browser" library, run `pip3 install robotframework-browser`
5253

53-
Browser library has requirements for NodeJS. After installing NodeJS run command: `rfbrowser init` to install needed dependencies.
54+
After the installation has completed successfully,
55+
the library has to be initialized by running `rfbrowser init`—you'll need [Node.js installed](https://nodejs.org/en/download/). It will take a a minute or two to run the command.
5456

5557
## Start server
5658

0 commit comments

Comments
 (0)