You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
'<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>'
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
'<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
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.