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

Update outdated reference and minor grammar changes#167

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
samipe merged 1 commit intorobotframework:masterfrommattcarmody:master
Apr 10, 2020
Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletionssources/src/App.vue
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -251,7 +251,7 @@ export default {
text: {
header: "Libraries",
text:
'<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" target="_blank">is a breeze</a>. </p> <p> <a href="https://github.com/robotframework/robotframework.github.com" target="_blank">Let us know</a> if useful libraries are missing from the list or if a library on the list seems to be unmaintained.</p>'
'<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" target="_blank">is a breeze</a>. </p> <p> <a href="https://github.com/robotframework/robotframework.github.com" target="_blank">Let us know</a> if useful libraries are missing from the list or if a library on the list seems to be unmaintained.</p>'
},
tabs: [
{
Expand DownExpand Up@@ -1074,7 +1074,7 @@ export default {
text: {
header: "Support",
text:
'<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" target="_blank">Let us know</a> if there is a support forum or a company offering related services you would like to be added here. </p>'
'<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" target="_blank">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>'
},
tabs: [
{
Expand Down
8 changes: 4 additions & 4 deletionssources/src/components/pages/Examples.vue
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -250,23 +250,23 @@ export default {
items: [
{
text:
'<p> Let\'s start with a real-life example from our <a href="https://github.com/robotframework/WebDemo" target="_blank">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 class="italic">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 class="teletype">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 class="italic">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>'
'<p> Let\'s start with a real-life example from our <a href="https://github.com/robotframework/WebDemo" target="_blank">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 class="italic">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 class="teletype">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 class="italic">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>'
},
{
text:
'<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 class="bold"> Report</span> and the <span class="bold">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" target="_blank">web demo project</a>.</p><p id="example-report-last-paragraph"> 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>'
'<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 class="bold"> Report</span> and the <span class="bold">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" target="_blank">web demo project</a>.</p><p id="example-report-last-paragraph"> 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>'
},
{
text:
'<div class="caption margin vertical-content"> <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" class="bold" target="_blank">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 class="italic">resource file</span>.</p>'
'<div class="caption margin vertical-content"> <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" class="bold" target="_blank">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 class="italic">resource file</span>.</p>'
},
{
text:
'<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>'
},
{
text:
'<p> <span class="bold"><a href="http://en.wikipedia.org/wiki/Data-driven_testing" target="_blank">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 class="teletype">Calculate</span> keyword. </p> <p> This example comes from <a href="https://github.com/robotframework/RobotDemo" target="_blank">ouranother demo</a> displaying testing a simple calculator. Check it out! </p>'
'<p> <span class="bold"><a href="http://en.wikipedia.org/wiki/Data-driven_testing" target="_blank">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 class="teletype">Calculate</span> keyword. </p> <p> This example comes from <a href="https://github.com/robotframework/RobotDemo" target="_blank">another demo of ours</a> displaying testing of a simple calculator. Check it out! </p>'
},
{
text:
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp