File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -50,10 +50,10 @@ Create a new virtual environment by running `python3 -m venv venv` to create a v
50
50
environment in a local directory named "venv". Running against that virtual environment
51
51
will work when doing ` source venv/bin/activate ` moving forward.
52
52
53
- # Diving into the code
53
+ ## Diving into the code
54
54
55
- Let's go section by section, at the outset we have a settings block which includes a short description
56
- of the automation and it's imports.
55
+ Let's go section by section. At the outset we have a settings block which includes a short description
56
+ of the automation and what it imports. [ Docs ] ( http://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#id587 )
57
57
```
58
58
*** Settings ***
59
59
Documentation Searches the Secretary of State UCC database
@@ -64,7 +64,7 @@ Library OperatingSystem
64
64
```
65
65
The first two imports that start with ` libraries/ ` were created for this project. They parse the
66
66
results of the search and to store the result via a HTTP POST request. The second two imports pull in the
67
- RPA.Browser library included with RPA Framework and the OperatingSystem library offered by Robot Framework.
67
+ ` RPA.Browser ` library included with RPA Framework and the ` OperatingSystem ` library offered by Robot Framework.
68
68
69
69
#### RPA Framework? Robot Framework? Which is it?
70
70
You can’t perform that action at this time.
0 commit comments