robotframework-robotlog2db 1.3.6__tar.gz → 1.3.8__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (17) hide show
  1. {robotframework-robotlog2db-1.3.6 → robotframework-robotlog2db-1.3.8}/PKG-INFO +94 -42
  2. {robotframework-robotlog2db-1.3.6 → robotframework-robotlog2db-1.3.8}/README.rst +85 -45
  3. {robotframework-robotlog2db-1.3.6 → robotframework-robotlog2db-1.3.8}/RobotLog2DB/CDataBase.py +133 -133
  4. {robotframework-robotlog2db-1.3.6 → robotframework-robotlog2db-1.3.8}/RobotLog2DB/RobotLog2DB.pdf +0 -0
  5. {robotframework-robotlog2db-1.3.6 → robotframework-robotlog2db-1.3.8}/RobotLog2DB/__init__.py +2 -2
  6. {robotframework-robotlog2db-1.3.6 → robotframework-robotlog2db-1.3.8}/RobotLog2DB/__main__.py +2 -2
  7. {robotframework-robotlog2db-1.3.6 → robotframework-robotlog2db-1.3.8}/RobotLog2DB/robotlog2db.py +98 -91
  8. {robotframework-robotlog2db-1.3.6 → robotframework-robotlog2db-1.3.8}/RobotLog2DB/version.py +3 -3
  9. {robotframework-robotlog2db-1.3.6 → robotframework-robotlog2db-1.3.8}/robotframework_robotlog2db.egg-info/PKG-INFO +94 -42
  10. {robotframework-robotlog2db-1.3.6 → robotframework-robotlog2db-1.3.8}/setup.py +1 -1
  11. {robotframework-robotlog2db-1.3.6 → robotframework-robotlog2db-1.3.8}/RobotLog2DB/xsd/robot.xsd +0 -0
  12. {robotframework-robotlog2db-1.3.6 → robotframework-robotlog2db-1.3.8}/robotframework_robotlog2db.egg-info/SOURCES.txt +0 -0
  13. {robotframework-robotlog2db-1.3.6 → robotframework-robotlog2db-1.3.8}/robotframework_robotlog2db.egg-info/dependency_links.txt +0 -0
  14. {robotframework-robotlog2db-1.3.6 → robotframework-robotlog2db-1.3.8}/robotframework_robotlog2db.egg-info/entry_points.txt +0 -0
  15. {robotframework-robotlog2db-1.3.6 → robotframework-robotlog2db-1.3.8}/robotframework_robotlog2db.egg-info/requires.txt +0 -0
  16. {robotframework-robotlog2db-1.3.6 → robotframework-robotlog2db-1.3.8}/robotframework_robotlog2db.egg-info/top_level.txt +0 -0
  17. {robotframework-robotlog2db-1.3.6 → robotframework-robotlog2db-1.3.8}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: robotframework-robotlog2db
3
- Version: 1.3.6
3
+ Version: 1.3.8
4
4
  Summary: Imports robot result(s) to TestResultWebApp database
5
5
  Home-page: https://github.com/test-fullautomation/robotframework-robotlog2db
6
6
  Author: Tran Duy Ngoan
@@ -37,30 +37,84 @@ Table of Contents
37
37
  Getting Started
38
38
  ---------------
39
39
 
40
- [RobotLog2DB](https://github.com/test-fullautomation/robotframework-robotlog2db)
41
- is the tool that helps to import Robot Framework results (**\*.xml**
42
- format) to
43
- [TestResultWebApp](https://github.com/test-fullautomation/TestResultWebApp)
44
- Dashboard.
40
+ **RobotLog2DB** is a command-line tool that enables you to import [Robot
41
+ Framework XML
42
+ result](https://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#output-file)
43
+ files into
44
+ [TestResultWebApp](https://github.com/test-fullautomation/TestResultWebApp)\'s
45
+ database for presenting an overview about the whole test execution and
46
+ detail of each test result.
45
47
 
46
- [RobotLog2DB](https://github.com/test-fullautomation/robotframework-robotlog2db)
47
- tool is operating system independent and only works with Python 3.
48
+ **RobotLog2DB** tool is operating system independent and only works with
49
+ Python 3.
48
50
 
49
51
  ### How to install
50
52
 
51
- RobotLog2DB is not available on [PyPI](https://pypi.org/) now.
53
+ **RobotLog2DB** can be installed in two different ways.
54
+
55
+ 1. Installation via PyPi (recommended for users)
56
+
57
+ ``` {.}
58
+ pip install robotframework-robotlog2db
59
+ ```
60
+
61
+ [RobotLog2DB in
62
+ PyPi](https://pypi.org/project/robotframework-robotlog2db/)
63
+
64
+ 2. Installation via GitHub (recommended for developers)
65
+
66
+ - Clone the **robotframework-robotlog2db** repository to your
67
+ machine.
68
+
69
+ ``` {.}
70
+ git clone https://github.com/test-fullautomation/robotframework-robotlog2db.git
71
+ ```
72
+
73
+ [RobotLog2DB in
74
+ GitHub](https://github.com/test-fullautomation/robotframework-robotlog2db)
75
+
76
+ - Install dependencies
77
+
78
+ **RobotLog2DB** requires some additional Python libraries.
79
+ Before you install the cloned repository sources you have to
80
+ install the dependencies manually. The names of all related
81
+ packages you can find in the file `requirements.txt` in the
82
+ repository root folder. Use pip to install them:
83
+
84
+ ``` {.}
85
+ pip install -r ./requirements.txt
86
+ ```
87
+
88
+ Additionally install **LaTeX** (recommended: TeX Live). This is
89
+ used to render the documentation.
90
+
91
+ - Configure dependencies
92
+
93
+ The installation of **RobotLog2DB** includes to generate the
94
+ documentation in PDF format. This is done by an application
95
+ called **GenPackageDoc**, that is part of the installation
96
+ dependencies (see `requirements.txt`).
97
+
98
+ **GenPackageDoc** uses **LaTeX** to generate the documentation
99
+ in PDF format. Therefore **GenPackageDoc** needs to know where
100
+ to find **LaTeX**. This is defined in the **GenPackageDoc**
101
+ configuration file
102
+
103
+ ``` {.}
104
+ packagedoc\packagedoc_config.json
105
+ ```
52
106
 
53
- But you can install this package directly from Github repository as
54
- below:
107
+ Before you start the installation you have to introduce the
108
+ following environment variable, that is used in
109
+ `packagedoc_config.json`:
55
110
 
56
- pip install git+https://github.com/test-fullautomation/robotframework-robotlog2db.git
111
+ - `GENDOC_LATEXPATH` : path to `pdflatex` executable
57
112
 
58
- Or you can clone sourcecode to your local directory then install this
59
- package with below steps:
113
+ - Use the following command to install **RobotLog2DB**:
60
114
 
61
- git clone https://github.com/test-fullautomation/robotframework-robotlog2db.git
62
- cd robotframework-robotlog2db
63
- python setup.py install
115
+ ``` {.}
116
+ python setup.py install
117
+ ```
64
118
 
65
119
  After succesful installation, the executable file **RobotLog2DB** will
66
120
  be available (under *Scripts* folder of Python on Windows and
@@ -72,9 +126,9 @@ you can run it directly as operation system\'s command.
72
126
  Usage
73
127
  -----
74
128
 
75
- [RobotLog2DB](https://github.com/test-fullautomation/robotframework-robotlog2db)
76
- requires the Robot Framework result file(s) which contains the output
77
- result in XML format (default name is `output.xml`) and
129
+ **RobotLog2DB** requires the Robot Framework result file(s) which
130
+ contains the output result in XML format (default name is `output.xml`)
131
+ and
78
132
  [TestResultWebApp](https://github.com/test-fullautomation/TestResultWebApp)\'s
79
133
  database information for importing.
80
134
 
@@ -108,7 +162,7 @@ The usage should be showed as below:
108
162
  --config CONFIG configuration json file for component mapping information.
109
163
 
110
164
  The below command is simple usage with all required arguments to import
111
- robot results into TestResultWebApp\'s database:
165
+ Robot Framework results into TestResultWebApp\'s database:
112
166
 
113
167
  RobotLog2DB <resultxmlfile> <server> <user> <password> <database>
114
168
 
@@ -119,14 +173,14 @@ Besides the executable file, you can also run tool as a Python module
119
173
  Example
120
174
  -------
121
175
 
122
- In order the import the robot result(s) to TestResultWebApp\'s database,
123
- we need the Robot Framework result file (`output.xml`).
176
+ In order the import the Robot Framework result(s) to TestResultWebApp\'s
177
+ database, we need the Robot Framework result file (`output.xml`).
124
178
 
125
- So, firstly execute the robot testcase(s) to get the Robot Framework
126
- result file.
179
+ So, firstly execute the Robot Framework testcase(s) to get the Robot
180
+ Framework result file.
127
181
 
128
- Sample robot testcase which contains neccessary information for
129
- importing into TestResultWebApp\'s database:
182
+ Sample Robot Framework testcase which contains neccessary information
183
+ for importing into TestResultWebApp\'s database:
130
184
 
131
185
  *** Settings ***
132
186
  # Test execution level
@@ -136,7 +190,7 @@ importing into TestResultWebApp\'s database:
136
190
  Metadata version_test TEST_VERSION_0.1 # Test version
137
191
 
138
192
  # File/Suite level
139
- Documentation This is description for robot test file
193
+ Documentation This is description for Robot Framework test file
140
194
  Metadata author Tran Duy Ngoan (RBVH/ECM1)
141
195
  Metadata component Import_Tools
142
196
  Metadata testtool Robot Framework 3.2rc2 (Python 3.9.0 on win32)
@@ -167,11 +221,12 @@ importing into TestResultWebApp\'s database:
167
221
  > - tester
168
222
  > - testtool
169
223
  >
170
- > So that you do not need to define them in your Robot testcase(s).
224
+ > So that you do not need to define them in your Robot Framework
225
+ > testcase(s).
171
226
  >
172
227
  > However, if these `Metadata` definitions are already missing in the
173
- > RobotFramework output result file, you can specific them when
174
- > executing the RobotLog2DB tool with the optional arguments:
228
+ > Robot Framework output result file, you can specific them when
229
+ > executing the **RobotLog2DB** tool with the optional arguments:
175
230
  >
176
231
  > - `--variant VARIANT`: Project definitions
177
232
  > - `--versions VERSIONS`: Versions (Software;Hardware;Test)
@@ -183,7 +238,7 @@ importing into TestResultWebApp\'s database:
183
238
  > Documentation](https://github.com/test-fullautomation/robotframework-robotlog2db/blob/develop/RobotLog2DB/RobotLog2DB.pdf)
184
239
  > for more detail about these optional arguments.
185
240
 
186
- After getting Robot Framwork result file (`output.xml`), use below
241
+ After getting Robot Framework result file (`output.xml`), use below
187
242
  sample command to import that result into TestResultWebApp\'s database
188
243
  which is hosted at *localhost* as below sample command
189
244
 
@@ -194,26 +249,24 @@ how wonderful the execution result is displayed as below figures:
194
249
 
195
250
  Dashboard view:
196
251
 
197
- ![Dashboard view](packagedoc/additional_docs/pictures/Dashboard.png)
252
+ ![Dashboard view](https://github.com/test-fullautomation/robotframework-robotlog2db/blob/develop/packagedoc/additional_docs/pictures/Dashboard.png?raw=true)
198
253
 
199
254
  Datatable view:
200
255
 
201
- ![Datatable view](packagedoc/additional_docs/pictures/Datatable.png)
256
+ ![Datatable view](https://github.com/test-fullautomation/robotframework-robotlog2db/blob/develop/packagedoc/additional_docs/pictures/Datatable.png?raw=true)
202
257
 
203
258
  Contribution
204
259
  ------------
205
260
 
206
261
  We are always searching support and you are cordially invited to help to
207
- improve
208
- [RobotLog2DB](https://github.com/test-fullautomation/robotframework-robotlog2db)
209
- tool.
262
+ improve **RobotLog2DB** tool.
210
263
 
211
264
  Sourcecode Documentation
212
265
  ------------------------
213
266
 
214
267
  To understand more detail about the tool\'s features, parameters and how
215
- Robot testcase information will be displayed on TestResultWebApp, please
216
- refer to [RobotLog2DB tool's
268
+ Robot Framework testcase information will be displayed on
269
+ TestResultWebApp, please refer to [RobotLog2DB tool's
217
270
  Documentation](https://github.com/test-fullautomation/robotframework-robotlog2db/blob/develop/RobotLog2DB/RobotLog2DB.pdf).
218
271
 
219
272
  Feedback
@@ -221,8 +274,7 @@ Feedback
221
274
 
222
275
  Please feel free to give any feedback to us via
223
276
 
224
- Email to: [Robot Framework Support
225
- Group](mailto:RobotFrameworkSupportGroup@bcn.bosch.com)
277
+ Email to: [Thomas Pollerspöck](mailto:Thomas.Pollerspoeck@de.bosch.com)
226
278
 
227
279
  Issue tracking: [RobotLog2DB
228
280
  Issues](https://github.com/test-fullautomation/robotframework-robotlog2db/issues)
@@ -248,7 +300,7 @@ About
248
300
 
249
301
  ### License
250
302
 
251
- Copyright 2020-2022 Robert Bosch GmbH
303
+ Copyright 2020-2023 Robert Bosch GmbH
252
304
 
253
305
  Licensed under the Apache License, Version 2.0 (the \"License\"); you
254
306
  may not use this file except in compliance with the License. You may
@@ -17,47 +17,87 @@ Table of Contents
17
17
  - `Maintainers <#maintainers>`__
18
18
  - `Contributors <#contributors>`__
19
19
  - `License <#license>`__
20
-
20
+
21
21
  Getting Started
22
22
  ---------------
23
23
 
24
- RobotLog2DB_ is the tool that helps to import Robot Framework results
25
- (***.xml** format) to TestResultWebApp_ Dashboard.
24
+ **RobotLog2DB** is a command-line tool that enables you to import `Robot
25
+ Framework XML result`_ files into TestResultWebApp_'s database for
26
+ presenting an overview about the whole test execution and detail of each test
27
+ result.
26
28
 
27
- RobotLog2DB_ tool is operating system independent and only works with
29
+ **RobotLog2DB** tool is operating system independent and only works with
28
30
  Python 3.
29
31
 
30
32
  How to install
31
33
  ~~~~~~~~~~~~~~
32
- RobotLog2DB is not available on PyPI_ now.
33
34
 
34
- But you can install this package directly from Github repository as below:
35
+ **RobotLog2DB** can be installed in two different ways.
35
36
 
36
- ::
37
+ 1. Installation via PyPi (recommended for users)
37
38
 
38
- pip install git+https://github.com/test-fullautomation/robotframework-robotlog2db.git
39
+ .. code::
39
40
 
40
- Or you can clone sourcecode to your local directory then install this package
41
- with below steps:
41
+ pip install robotframework-robotlog2db
42
42
 
43
- ::
43
+ `RobotLog2DB in PyPi <https://pypi.org/project/robotframework-robotlog2db/>`_
44
+
45
+ 2. Installation via GitHub (recommended for developers)
46
+
47
+ * Clone the **robotframework-robotlog2db** repository to your machine.
48
+
49
+ .. code::
50
+
51
+ git clone https://github.com/test-fullautomation/robotframework-robotlog2db.git
52
+
53
+ `RobotLog2DB in GitHub <https://github.com/test-fullautomation/robotframework-robotlog2db>`_
54
+
55
+ * Install dependencies
56
+
57
+ **RobotLog2DB** requires some additional Python libraries. Before you install the cloned repository sources
58
+ you have to install the dependencies manually. The names of all related packages you can find in the file ``requirements.txt``
59
+ in the repository root folder. Use pip to install them:
60
+
61
+ .. code::
62
+
63
+ pip install -r ./requirements.txt
44
64
 
45
- git clone https://github.com/test-fullautomation/robotframework-robotlog2db.git
46
- cd robotframework-robotlog2db
47
- python setup.py install
65
+ Additionally install **LaTeX** (recommended: TeX Live). This is used to render the documentation.
48
66
 
49
- After succesful installation, the executable file **RobotLog2DB**
50
- will be available (under *Scripts* folder of Python on Windows
67
+ * Configure dependencies
68
+
69
+ The installation of **RobotLog2DB** includes to generate the documentation in PDF format. This is done by
70
+ an application called **GenPackageDoc**, that is part of the installation dependencies (see ``requirements.txt``).
71
+
72
+ **GenPackageDoc** uses **LaTeX** to generate the documentation in PDF format. Therefore **GenPackageDoc** needs to know where to find
73
+ **LaTeX**. This is defined in the **GenPackageDoc** configuration file
74
+
75
+ .. code::
76
+
77
+ packagedoc\packagedoc_config.json
78
+
79
+ Before you start the installation you have to introduce the following environment variable, that is used in ``packagedoc_config.json``:
80
+
81
+ - ``GENDOC_LATEXPATH`` : path to ``pdflatex`` executable
82
+
83
+ * Use the following command to install **RobotLog2DB**:
84
+
85
+ .. code::
86
+
87
+ python setup.py install
88
+
89
+ After succesful installation, the executable file **RobotLog2DB**
90
+ will be available (under *Scripts* folder of Python on Windows
51
91
  and *~/.local/bin/* folder on Linux).
52
92
 
53
- In case above location is added to **PATH** environment variable
93
+ In case above location is added to **PATH** environment variable
54
94
  then you can run it directly as operation system's command.
55
95
 
56
96
  Usage
57
97
  -----
58
98
 
59
- RobotLog2DB_ requires the Robot Framework result file(s) which contains the
60
- output result in XML format (default name is ``output.xml``) and
99
+ **RobotLog2DB** requires the Robot Framework result file(s) which contains the
100
+ output result in XML format (default name is ``output.xml``) and
61
101
  TestResultWebApp_'s database information for importing.
62
102
 
63
103
  Use below command to get tools's usage
@@ -95,8 +135,8 @@ The usage should be showed as below:
95
135
  --config CONFIG configuration json file for component mapping information.
96
136
 
97
137
 
98
- The below command is simple usage with all required arguments to import
99
- robot results into TestResultWebApp's database:
138
+ The below command is simple usage with all required arguments to import
139
+ Robot Framework results into TestResultWebApp's database:
100
140
 
101
141
  ::
102
142
 
@@ -111,12 +151,13 @@ Besides the executable file, you can also run tool as a Python module
111
151
 
112
152
  Example
113
153
  -------
114
- In order the import the robot result(s) to TestResultWebApp's database,
154
+
155
+ In order the import the Robot Framework result(s) to TestResultWebApp's database,
115
156
  we need the Robot Framework result file (``output.xml``).
116
157
 
117
- So, firstly execute the robot testcase(s) to get the Robot Framework result file.
158
+ So, firstly execute the Robot Framework testcase(s) to get the Robot Framework result file.
118
159
 
119
- Sample robot testcase which contains neccessary information for importing into
160
+ Sample Robot Framework testcase which contains neccessary information for importing into
120
161
  TestResultWebApp's database:
121
162
 
122
163
  ::
@@ -129,7 +170,7 @@ TestResultWebApp's database:
129
170
  Metadata version_test TEST_VERSION_0.1 # Test version
130
171
 
131
172
  # File/Suite level
132
- Documentation This is description for robot test file
173
+ Documentation This is description for Robot Framework test file
133
174
  Metadata author Tran Duy Ngoan (RBVH/ECM1)
134
175
  Metadata component Import_Tools
135
176
  Metadata testtool Robot Framework 3.2rc2 (Python 3.9.0 on win32)
@@ -149,9 +190,9 @@ TestResultWebApp's database:
149
190
  Notes:
150
191
  ~~~~~~
151
192
 
152
- In case you are using RobotFramework AIO, these below ``Metadata``
153
- definitions will be handled implicitly by `RobotFramework Testsuites
154
- Management`_ library within Suite Setup.
193
+ In case you are using RobotFramework AIO, these below ``Metadata``
194
+ definitions will be handled implicitly by `RobotFramework Testsuites
195
+ Management`_ library within Suite Setup.
155
196
 
156
197
  * project
157
198
  * version_sw
@@ -161,11 +202,11 @@ Notes:
161
202
  * tester
162
203
  * testtool
163
204
 
164
- So that you do not need to define them in your Robot testcase(s).
205
+ So that you do not need to define them in your Robot Framework testcase(s).
165
206
 
166
- However, if these ``Metadata`` definitions are already missing in the
167
- RobotFramework output result file, you can specific them when executing the
168
- RobotLog2DB tool with the optional arguments:
207
+ However, if these ``Metadata`` definitions are already missing in the
208
+ Robot Framework output result file, you can specific them when executing the
209
+ **RobotLog2DB** tool with the optional arguments:
169
210
 
170
211
  * ``--variant VARIANT``: Project definitions
171
212
  * ``--versions VERSIONS``: Versions (Software;Hardware;Test) definitions.
@@ -174,43 +215,43 @@ Notes:
174
215
  Please refer to `RobotLog2DB tool’s Documentation`_ for more detail about
175
216
  these optional arguments.
176
217
 
177
- After getting Robot Framwork result file (``output.xml``), use below sample
178
- command to import that result into TestResultWebApp's database which is hosted
218
+ After getting Robot Framework result file (``output.xml``), use below sample
219
+ command to import that result into TestResultWebApp's database which is hosted
179
220
  at *localhost* as below sample command
180
221
 
181
222
  ::
182
223
 
183
224
  RobotLog2DB output.xml localhost test_user test_pw test_db
184
225
 
185
- Then, open TestResultWebApp with your favourite browser and you will see how
226
+ Then, open TestResultWebApp with your favourite browser and you will see how
186
227
  wonderful the execution result is displayed as below figures:
187
228
 
188
229
  Dashboard view:
189
230
 
190
- .. image:: packagedoc/additional_docs/pictures/Dashboard.png
231
+ .. image:: https://github.com/test-fullautomation/robotframework-robotlog2db/blob/develop/packagedoc/additional_docs/pictures/Dashboard.png?raw=true
191
232
  :alt: Dashboard view
192
233
 
193
234
  Datatable view:
194
235
 
195
- .. image:: packagedoc/additional_docs/pictures/Datatable.png
236
+ .. image:: https://github.com/test-fullautomation/robotframework-robotlog2db/blob/develop/packagedoc/additional_docs/pictures/Datatable.png?raw=true
196
237
  :alt: Datatable view
197
238
 
198
239
  Contribution
199
240
  ------------
200
- We are always searching support and you are cordially invited to help to improve
201
- RobotLog2DB_ tool.
241
+ We are always searching support and you are cordially invited to help to improve
242
+ **RobotLog2DB** tool.
202
243
 
203
244
  Sourcecode Documentation
204
245
  ------------------------
205
- To understand more detail about the tool's features, parameters and how Robot
206
- testcase information will be displayed on TestResultWebApp, please refer to
246
+ To understand more detail about the tool's features, parameters and how Robot Framework
247
+ testcase information will be displayed on TestResultWebApp, please refer to
207
248
  `RobotLog2DB tool’s Documentation`_.
208
249
 
209
250
  Feedback
210
251
  --------
211
252
  Please feel free to give any feedback to us via
212
253
 
213
- Email to: `Robot Framework Support Group`_
254
+ Email to: `Thomas Pollerspöck`_
214
255
 
215
256
  Issue tracking: `RobotLog2DB Issues`_
216
257
 
@@ -237,7 +278,7 @@ Contributors
237
278
  License
238
279
  ~~~~~~~
239
280
 
240
- Copyright 2020-2022 Robert Bosch GmbH
281
+ Copyright 2020-2023 Robert Bosch GmbH
241
282
 
242
283
  Licensed under the Apache License, Version 2.0 (the "License");
243
284
  you may not use this file except in compliance with the License.
@@ -256,8 +297,6 @@ limitations under the License.
256
297
  :target: http://www.apache.org/licenses/LICENSE-2.0.html
257
298
  .. _RobotLog2DB: https://github.com/test-fullautomation/robotframework-robotlog2db
258
299
  .. _TestResultWebApp: https://github.com/test-fullautomation/TestResultWebApp
259
- .. _PyPI: https://pypi.org/
260
- .. _Robot Framework Support Group: mailto:RobotFrameworkSupportGroup@bcn.bosch.com
261
300
  .. _Thomas Pollerspöck: mailto:Thomas.Pollerspoeck@de.bosch.com
262
301
  .. _Tran Duy Ngoan: mailto:Ngoan.TranDuy@vn.bosch.com
263
302
  .. _Nguyen Huynh Tri Cuong: mailto:Cuong.NguyenHuynhTri@vn.bosch.com
@@ -267,3 +306,4 @@ limitations under the License.
267
306
  .. _RobotLog2DB tool’s Documentation: https://github.com/test-fullautomation/robotframework-robotlog2db/blob/develop/RobotLog2DB/RobotLog2DB.pdf
268
307
  .. _RobotLog2DB Issues: https://github.com/test-fullautomation/robotframework-robotlog2db/issues
269
308
  .. _RobotFramework Testsuites Management: https://github.com/test-fullautomation/robotframework-testsuitesmanagement
309
+ .. _Robot Framework XML result: https://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#output-file