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

Commit 592e402

Browse files
Merge pull request #11 from ui-testing-academy/master
Sync origin
2 parents 4571eb5 + f73d7fe commit 592e402

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

‎_data/home_categories.yml‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66

77
- permalink: /general/ui-testing/
88
title: UI testing
9-
desc: General topics connected with UI testing
9+
desc: General topics connected with UI testing.
1010
icon: file-text
1111

1212
- permalink: /general/naming/
1313
title: Naming
14-
desc: Naming conventions for test cases
14+
desc: Naming conventions for test cases.
1515
icon: bold
1616

1717
# - permalink: /general/dsl/
@@ -21,7 +21,7 @@
2121

2222
- permalink: /general/good-practices/
2323
title: Good Practices
24-
desc: Good practices which can be applied to UI testing
24+
desc: Good practices which can be applied to UI testing.
2525
icon: star
2626

2727
# - title: Platforms

‎_posts/2020-09-19-separate-your-tests-from-the-test-automation-framework.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: 'Separate your tests from the test automation framework'
3-
description: 'We will explore reasons for separating test cases from the test automation framework'
3+
description: 'We will explore reasons for separating test cases from the test automation framework.'
44
categories: [general, good-practices]
55
author: alex_zhukovich
66
---

‎docs/feed.xml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en"><generator uri="https://jekyllrb.com/" version="3.8.5">Jekyll</generator><link href="https://ui-testing.academy/feed.xml" rel="self" type="application/atom+xml" /><link href="https://ui-testing.academy/" rel="alternate" type="text/html" hreflang="en" /><updated>2020年09月20日T19:03:13+00:00</updated><id>https://ui-testing.academy/feed.xml</id><title type="html">UI Testing Academy</title><subtitle>UI Testing related content</subtitle><author><name>Alex Zhukovich</name></author><entry><title type="html">Never use sleep in test code</title><link href="https://ui-testing.academy/general/good-practices/never-use-sleep-in-test-code/" rel="alternate" type="text/html" title="Never use sleep in test code" /><published>2020年09月20日T00:00:00+00:00</published><updated>2020年09月20日T00:00:00+00:00</updated><id>https://ui-testing.academy/general/good-practices/never-use-sleep-in-test-code</id><content type="html" xml:base="https://ui-testing.academy/general/good-practices/never-use-sleep-in-test-code/">&lt;p&gt;Almost every application performs long-running operations, and automated UI test cases should wait until this operation is finished. Often we should wait in the following scenarios:&lt;/p&gt;
1+
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en"><generator uri="https://jekyllrb.com/" version="3.8.5">Jekyll</generator><link href="https://ui-testing.academy/feed.xml" rel="self" type="application/atom+xml" /><link href="https://ui-testing.academy/" rel="alternate" type="text/html" hreflang="en" /><updated>2020年09月20日T19:16:53+00:00</updated><id>https://ui-testing.academy/feed.xml</id><title type="html">UI Testing Academy</title><subtitle>UI Testing related content</subtitle><author><name>Alex Zhukovich</name></author><entry><title type="html">Never use sleep in test code</title><link href="https://ui-testing.academy/general/good-practices/never-use-sleep-in-test-code/" rel="alternate" type="text/html" title="Never use sleep in test code" /><published>2020年09月20日T00:00:00+00:00</published><updated>2020年09月20日T00:00:00+00:00</updated><id>https://ui-testing.academy/general/good-practices/never-use-sleep-in-test-code</id><content type="html" xml:base="https://ui-testing.academy/general/good-practices/never-use-sleep-in-test-code/">&lt;p&gt;Almost every application performs long-running operations, and automated UI test cases should wait until this operation is finished. Often we should wait in the following scenarios:&lt;/p&gt;
22
&lt;ul&gt;
33
&lt;li&gt;interaction with the back-end&lt;/li&gt;
44
&lt;li&gt;interaction with the database (especially when we load a lot of data)&lt;/li&gt;

‎docs/general/good-practices/index.html‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@
246246
</div>
247247
<div class="uk-width-expand">
248248
<h1 class="uk-article-title uk-margin-remove">Good Practices</h1>
249-
<p class="uk-text-lead uk-text-muted uk-margin-small-top">Good practices which can be applied to UI testing</p>
249+
<p class="uk-text-lead uk-text-muted uk-margin-small-top">Good practices which can be applied to UI testing.</p>
250250
</div>
251251
</div>
252252

@@ -278,7 +278,7 @@ <h3 class="uk-card-title uk-margin-remove uk-text-primary">All test cases should
278278
<div class="uk-card uk-card-category uk-card-default uk-card-hover uk-card-body uk-inline uk-border-rounded uk-width-1-1">
279279
<a class="uk-position-cover" href="/general/good-practices/separate-your-tests-from-the-test-automation-framework/"></a>
280280
<h3 class="uk-card-title uk-margin-remove uk-text-primary">Separate your tests from the test automation framework</h3>
281-
<p class="uk-margin-small-top">We will explore reasons for separating test cases from the test automation framework</p>
281+
<p class="uk-margin-small-top">We will explore reasons for separating test cases from the test automation framework.</p>
282282
<div class="uk-article-meta uk-flex uk-flex-middle">
283283

284284

‎docs/general/good-practices/separate-your-tests-from-the-test-automation-framework/index.html‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111
<meta property="og:title" content="Separate your tests from the test automation framework" />
1212
<meta name="author" content="alex_zhukovich" />
1313
<meta property="og:locale" content="en" />
14-
<meta name="description" content="We will explore reasons for separating test cases from the test automation framework" />
15-
<meta property="og:description" content="We will explore reasons for separating test cases from the test automation framework" />
14+
<meta name="description" content="We will explore reasons for separating test cases from the test automation framework." />
15+
<meta property="og:description" content="We will explore reasons for separating test cases from the test automation framework." />
1616
<link rel="canonical" href="https://ui-testing.academy/general/good-practices/separate-your-tests-from-the-test-automation-framework/" />
1717
<meta property="og:url" content="https://ui-testing.academy/general/good-practices/separate-your-tests-from-the-test-automation-framework/" />
1818
<meta property="og:site_name" content="UI Testing Academy" />
1919
<meta property="og:type" content="article" />
2020
<meta property="article:published_time" content="2020年09月19日T00:00:00+00:00" />
2121
<script type="application/ld+json">
22-
{"dateModified":"2020-09-19T00:00:00+00:00","datePublished":"2020-09-19T00:00:00+00:00","headline":"Separate your tests from the test automation framework","mainEntityOfPage":{"@type":"WebPage","@id":"https://ui-testing.academy/general/good-practices/separate-your-tests-from-the-test-automation-framework/"},"publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://ui-testing.academy/logo.svg"},"name":"alex_zhukovich"},"author":{"@type":"Person","name":"alex_zhukovich"},"url":"https://ui-testing.academy/general/good-practices/separate-your-tests-from-the-test-automation-framework/","description":"We will explore reasons for separating test cases from the test automation framework","@type":"BlogPosting","@context":"http://schema.org"}</script>
22+
{"dateModified":"2020-09-19T00:00:00+00:00","datePublished":"2020-09-19T00:00:00+00:00","headline":"Separate your tests from the test automation framework","mainEntityOfPage":{"@type":"WebPage","@id":"https://ui-testing.academy/general/good-practices/separate-your-tests-from-the-test-automation-framework/"},"publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://ui-testing.academy/logo.svg"},"name":"alex_zhukovich"},"author":{"@type":"Person","name":"alex_zhukovich"},"url":"https://ui-testing.academy/general/good-practices/separate-your-tests-from-the-test-automation-framework/","description":"We will explore reasons for separating test cases from the test automation framework.","@type":"BlogPosting","@context":"http://schema.org"}</script>
2323
<!-- End Jekyll SEO tag -->
2424

2525
<meta property="og:image" content="https://ui-testing.academy/uploads/logo.svg"/>

‎docs/general/naming/index.html‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@
244244
</div>
245245
<div class="uk-width-expand">
246246
<h1 class="uk-article-title uk-margin-remove">Naming</h1>
247-
<p class="uk-text-lead uk-text-muted uk-margin-small-top">Naming conventions for test cases</p>
247+
<p class="uk-text-lead uk-text-muted uk-margin-small-top">Naming conventions for test cases.</p>
248248
</div>
249249
</div>
250250

‎docs/general/ui-testing/index.html‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@
242242
</div>
243243
<div class="uk-width-expand">
244244
<h1 class="uk-article-title uk-margin-remove">UI testing</h1>
245-
<p class="uk-text-lead uk-text-muted uk-margin-small-top">General topics connected with UI testing</p>
245+
<p class="uk-text-lead uk-text-muted uk-margin-small-top">General topics connected with UI testing.</p>
246246
</div>
247247
</div>
248248

‎docs/index.html‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ <h2 id="general" class="uk-text-center uk-margin-remove">General information</h2
251251
<div class="uk-width-expand">
252252
<h3 class="uk-card-title uk-margin-remove uk-text-primary">UI testing</h3>
253253

254-
<p class="uk-text-muted uk-margin-remove">General topics connected with UI testing</p>
254+
<p class="uk-text-muted uk-margin-remove">General topics connected with UI testing.</p>
255255

256256
</div>
257257
</div>
@@ -270,7 +270,7 @@ <h3 class="uk-card-title uk-margin-remove uk-text-primary">UI testing</h3>
270270
<div class="uk-width-expand">
271271
<h3 class="uk-card-title uk-margin-remove uk-text-primary">Naming</h3>
272272

273-
<p class="uk-text-muted uk-margin-remove">Naming conventions for test cases</p>
273+
<p class="uk-text-muted uk-margin-remove">Naming conventions for test cases.</p>
274274

275275
</div>
276276
</div>
@@ -289,7 +289,7 @@ <h3 class="uk-card-title uk-margin-remove uk-text-primary">Naming</h3>
289289
<div class="uk-width-expand">
290290
<h3 class="uk-card-title uk-margin-remove uk-text-primary">Good Practices</h3>
291291

292-
<p class="uk-text-muted uk-margin-remove">Good practices which can be applied to UI testing</p>
292+
<p class="uk-text-muted uk-margin-remove">Good practices which can be applied to UI testing.</p>
293293

294294
</div>
295295
</div>

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /