Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commita335550

Browse files
authored
Update outdated reference and minor grammar changes (robotframework#167)
1 parentc532e50 commita335550

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

‎sources/src/App.vue‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ export default {
251251
text: {
252252
header:"Libraries",
253253
text:
254-
'<p> Libraries provide the actual automation and testing capabilities to Robot Framework by providing keywords. Several standard libraries are bundledinwith the framework, andgalore of separately developed external libraries that can be installed based on your needs. Creating your own libraries <a href="http://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#creating-test-libraries">is a breeze</a>. </p> <p> <a href="https://github.com/robotframework/robotframework.github.com">Let us know</a> if useful libraries are missing from the list or if a library on the list seems to be unmaintained.</p>'
254+
'<p> Libraries provide the actual automation and testing capabilities to Robot Framework by providing keywords. Several standard libraries are bundled with the framework, andthere are separately developed external libraries galore that can be installed based on your needs. Creating your own libraries <a href="http://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#creating-test-libraries">is a breeze</a>. </p> <p> <a href="https://github.com/robotframework/robotframework.github.com">Let us know</a> if useful libraries are missing from the list or if a library on the list seems to be unmaintained.</p>'
255255
},
256256
tabs: [
257257
{
@@ -1079,7 +1079,7 @@ export default {
10791079
text: {
10801080
header:"Support",
10811081
text:
1082-
'<p> There are various forums wheretoask questions and discuss Robot Framework and the ecosystem around it in general. Several companies around the world provide paid support, consultation, and training courses related to the framework. </p> <p> <a href="https://github.com/robotframework/robotframework.github.com">Let us know</a> if there is a support forum or a company offering related services you would like to be added here. </p>'
1082+
'<p> There are various forums whereyou canask questions and discuss Robot Framework and the ecosystem around it in general. Several companies around the world provide paid support, consultation, and training courses related to the framework. </p> <p> <a href="https://github.com/robotframework/robotframework.github.com">Let us know</a> if there is a support forum or a company offering related services that you would like to be added here. </p>'
10831083
},
10841084
tabs: [
10851085
{

‎sources/src/components/pages/Examples.vue‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -250,23 +250,23 @@ export default {
250250
items: [
251251
{
252252
text:
253-
'<p> Let\'s start with a real-life example from our <a href="https://github.com/robotframework/WebDemo">web demo project</a>. Here we have a test suite with one test case which tests that login is valid. As you can see, test data syntax is based on <span>keywords</span>. </p> <p> Keywords are composable, meaning you can define new keywords that use pre-existing keywords. This way, you can abstract details of testing to something that makes immediate sense; for example, we don\'t need to know what exactly the step <span>Submit Credentials</span> actually does, unless we want to. Test cases are therefore clear and readable, with just the right level of abstraction to convey the <span>intent</span> of the test, rather than the nuts and bolts. </p> <p> Seenext example for what you\'re going to get once this example is run! </p>'
253+
'<p> Let\'s start with a real-life example from our <a href="https://github.com/robotframework/WebDemo">web demo project</a>. Here we have a test suite with one test case which tests that login is valid. As you can see, test data syntax is based on <span>keywords</span>. </p> <p> Keywords are composable, meaning you can define new keywords that use pre-existing keywords. This way, you can abstract details of testing to something that makes immediate sense; for example, we don\'t need to know what exactly the step <span>Submit Credentials</span> actually does, unless we want to. Test cases are therefore clear and readable, with just the right level of abstraction to convey the <span>intent</span> of the test, rather than the nuts and bolts. </p> <p> SeeReport and Log for what you\'re going to get once this example is run! </p>'
254254
},
255255
{
256256
text:
257-
'<p> Executing the test suite file from previous example, we get the meat and bone of Robot Framework: A comprehensive debriefing on what happened in the test execution in two parts: the <span> Report</span> and the <span>Log</span>. </p> <p>This Report and Log are based on executing the test suite described in the previous example and is from our <a href="https://github.com/robotframework/WebDemo">web demo project</a>.</p><p> Report details clearly viewable statistics including Pass/Fail ratios and elapsed times. This gives you great overviewon the test execution. </p> <p> Log details statistics from each step of the test execution, from keyword to keyword. It enables you to drill down on the specifics of the test in case of failure or otherwise. </p>'
257+
'<p> Executing the test suite file from previous example, we get the meat and bone of Robot Framework: A comprehensive debriefing on what happened in the test execution in two parts: the <span> Report</span> and the <span>Log</span>. </p> <p>This Report and Log are based on executing the test suite described in the previous example and is from our <a href="https://github.com/robotframework/WebDemo">web demo project</a>.</p><p> Report details clearly viewable statistics including Pass/Fail ratios and elapsed times. This gives youagreat overviewof the test execution. </p> <p> Log details statistics from each step of the test execution, from keyword to keyword. It enables you to drill down on the specifics of the test in case of failure or otherwise. </p>'
258258
},
259259
{
260260
text:
261-
'<div> <p> Keywords can be defined outside of the test suite and be imported as an external resources. This means you can collect generally useful keywords to one place and share them throughout your project,keepingalso the testing <a href="http://en.wikipedia.org/wiki/Don\'t_repeat_yourself">DRY</a>! </p> <p> Below, we have test case testing invalid login in <a href="https://github.com/robotframework/WebDemo">our very own web demo</a>. As you can see, we can abstract away a lot of necessary, but ultimately non-expressive nuts and bolts of the testing to the <span>resource file</span>.</p>'
261+
'<div> <p> Keywords can be defined outside of the test suite and be imported as an external resources. This means you can collect generally useful keywords to one place and share them throughout your project, alsokeepingthe testing <a href="http://en.wikipedia.org/wiki/Don\'t_repeat_yourself">DRY</a>! </p> <p> Below, we have a test case testing invalid login in <a href="https://github.com/robotframework/WebDemo">our very own web demo</a>. As you can see, we can abstract away a lot of necessary, but ultimately non-expressive nuts and bolts of the testing to the <span>resource file</span>.</p>'
262262
},
263263
{
264264
text:
265265
'<p> All keywords in Robot Framework come from some library. What if existing libraries do not have what you need? Easy! Just make a library of your own! </p><p> This example is from our <a href="https://github.com/robotframework/RobotDemo" target="_blank">Robot Demo</a>. These keywords the tests use are implemented in plain Python. You can also do libraries in Java. </p>'
266266
},
267267
{
268268
text:
269-
'<p> <span><a href="http://en.wikipedia.org/wiki/Data-driven_testing">Data-driven test development</a></span> is easy due to you being able to define templates for your tests. </p> <p> In this example, each test case adheres to the template set by <span>Calculate</span> keyword. </p> <p> This example comes from <a href="https://github.com/robotframework/RobotDemo">ouranother demo</a> displaying testing a simple calculator. Check it out! </p>'
269+
'<p> <span><a href="http://en.wikipedia.org/wiki/Data-driven_testing">Data-driven test development</a></span> is easy due to you being able to define templates for your tests. </p> <p> In this example, each test case adheres to the template set by <span>Calculate</span> keyword. </p> <p> This example comes from <a href="https://github.com/robotframework/RobotDemo">another demo of ours</a> displaying testing of a simple calculator. Check it out! </p>'
270270
},
271271
{
272272
text:

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp