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

Commit3912cac

Browse files
authored
Merge pull requestrobotframework#112 from aaltat/webdemo
Changed Webdemo to point GitHub project.
2 parents30267ff +be175f6 commit3912cac

13 files changed

+62
-26
lines changed

‎README.rst‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Robot Framework ecosystem front page
22
====================================
33

44
This repository hosts Robot Framework's public website source code. The site
5-
itself is available athttp://robotframework.org.
5+
itself is available athttps://robotframework.org.
66

77
Readme for editing this page `<sources/README.md>`__
88

‎index.html‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
1212

1313
ga('create','UA-106835747-2','auto');
14-
ga('send','pageview');</script><title>Robot Framework</title><metacharset=utf-8><metaname=viewportcontent="width=device-width,initial-scale=1,shrink-to-fit=no"><metaname=descriptioncontent="Generic test automation framework for acceptance testing and ATDD"><metaname=authorcontent=""><linkrel=apple-touch-iconsizes=76x76href=/static/img/icons/apple-touch-icon.png><linkrel=icontype=image/pngsizes=32x32href=/static/img/icons/favicon-32x32.png><linkrel=icontype=image/pngsizes=16x16href=/static/img/icons/favicon-16x16.png><linkrel=manifesthref=/static/img/icons/site.webmanifest><linkrel=mask-iconhref=/static/img/icons/safari-pinned-tab.svgcolor=#5bbad5><metaname=msapplication-TileColorcontent=#da532c><metaname=theme-colorcontent=#ffffff><linkhref=/static/css/app.8d1414f48f3e76d4697f72bc1dbc10d6.cssrel=stylesheet></head><body><divid=app></div><scripttype=text/javascriptsrc=/static/js/manifest.14a76fad9b304f57d579.js></script><scripttype=text/javascriptsrc=/static/js/vendor.2efd2cdea7175353f657.js></script><scripttype=text/javascriptsrc=/static/js/app.4d15d0d1f959a2e9d9dd.js></script></body></html>
14+
ga('send','pageview');</script><title>Robot Framework</title><metacharset=utf-8><metaname=viewportcontent="width=device-width,initial-scale=1,shrink-to-fit=no"><metaname=descriptioncontent="Generic test automation framework for acceptance testing and ATDD"><metaname=authorcontent=""><linkrel=apple-touch-iconsizes=76x76href=/static/img/icons/apple-touch-icon.png><linkrel=icontype=image/pngsizes=32x32href=/static/img/icons/favicon-32x32.png><linkrel=icontype=image/pngsizes=16x16href=/static/img/icons/favicon-16x16.png><linkrel=manifesthref=/static/img/icons/site.webmanifest><linkrel=mask-iconhref=/static/img/icons/safari-pinned-tab.svgcolor=#5bbad5><metaname=msapplication-TileColorcontent=#da532c><metaname=theme-colorcontent=#ffffff><linkhref=/static/css/app.0341e2a2e95494e3f18d49b561ba940c.cssrel=stylesheet></head><body><divid=app></div><scripttype=text/javascriptsrc=/static/js/manifest.14a76fad9b304f57d579.js></script><scripttype=text/javascriptsrc=/static/js/vendor.da85f901d0a684bf2397.js></script><scripttype=text/javascriptsrc=/static/js/app.39d4cfb0d1e084d99e47.js></script></body></html>

‎sources/build/webpack.base.conf.js‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ function resolve(dir) {
1111
module.exports={
1212
context:path.resolve(__dirname,'../'),
1313
entry:{
14-
app:'./src/Main.js'
14+
app:'./src/main.js'
1515
},
1616
output:{
1717
path:config.build.assetsRoot,
@@ -74,4 +74,4 @@ module.exports = {
7474
}
7575
]
7676
}
77-
}
77+
}

‎sources/src/App.vue‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
</div>
1818
</template>
1919
<script>
20-
importPageBlockfrom"@/Components/PageBlock.vue";
20+
importPageBlockfrom"@/components/PageBlock.vue";
2121
2222
exportdefault {
2323
components: {
@@ -766,9 +766,9 @@ export default {
766766
items: [
767767
{
768768
title:"Web Demo",
769-
href:"https://bitbucket.org/robotframework/webdemo",
769+
href:"https://github.com/robotframework/WebDemo",
770770
text:
771-
"Demonstrates how to create tests and higher level keywords. The system under test is a simple web page that is tested usingSelenium2Library."
771+
"Demonstrates how to create tests and higher level keywords. The system under test is a simple web page that is tested usingSeleniumLibrary."
772772
},
773773
{
774774
title:"ATDD with Robot Framework",

‎sources/src/components/PageBlock.vue‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
</template>
1111

1212
<script>
13-
importFeatureBoxfrom"@/Components/FeatureBox.vue";
14-
importTabBoxfrom"@/Components/TabBox.vue";
15-
importTextBlockfrom"@/Components/TextBlock.vue";
16-
importUserBoxfrom"@/Components/UserBox.vue";
13+
importFeatureBoxfrom"@/components/FeatureBox.vue";
14+
importTabBoxfrom"@/components/TabBox.vue";
15+
importTextBlockfrom"@/components/TextBlock.vue";
16+
importUserBoxfrom"@/components/UserBox.vue";
1717
1818
importExamplesfrom"@/components/pages/Examples";
1919

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
</div>
7878
<divclass="col">
7979
<preclass="highlight"><spanclass="gh">*** Settings ***</span><spanclass="p"></span>
80-
<spanclass="kn">Library</span><spanclass="p"> </span><spanclass="nn">Selenium2Library</span><spanclass="p"></span>
80+
<spanclass="kn">Library</span><spanclass="p"> </span><spanclass="nn">SeleniumLibrary</span><spanclass="p"></span>
8181

8282
<spanclass="gh">*** Variables ***</span><spanclass="p"></span>
8383
<spanclass="p">${</span><spanclass="nv">SERVER</span><spanclass="p">} </span><spanclass="s">localhost:7272</span><spanclass="p"></span>
@@ -218,7 +218,7 @@
218218
</template>
219219

220220
<script>
221-
importTextBlockfrom"@/Components/TextBlock.vue";
221+
importTextBlockfrom"@/components/TextBlock.vue";
222222
223223
exportdefault {
224224
components: {
@@ -235,15 +235,15 @@ export default {
235235
items: [
236236
{
237237
text:
238-
'<p> Let\'s start with a real-life example from our <a href="https://bitbucket.org/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> See next example for what you\'re going to get once this example is run! </p>'
238+
'<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> See next example for what you\'re going to get once this example is run! </p>'
239239
},
240240
{
241241
text:
242-
'<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://bitbucket.org/robotframework/webdemo">web demo project</a>.</p><p> Report details clearly viewable statistics including Pass/Fail ratios and elapsed times. This gives you great overview on 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>'
242+
'<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 overview on 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>'
243243
},
244244
{
245245
text:
246-
'<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, keeping also 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://bitbucket.org/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>'
246+
'<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, keeping also 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>'
247247
},
248248
{
249249
text:

‎static/css/app.0341e2a2e95494e3f18d49b561ba940c.css‎

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎static/css/app.0341e2a2e95494e3f18d49b561ba940c.css.map‎

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more aboutcustomizing how changed files appear on GitHub.

‎static/css/app.8d1414f48f3e76d4697f72bc1dbc10d6.css‎

Lines changed: 0 additions & 7 deletions
This file was deleted.

‎static/css/app.8d1414f48f3e76d4697f72bc1dbc10d6.css.map‎

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp