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
Copy file name to clipboardExpand all lines: docs/feed.xml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff 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-20T19: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-20T00:00:00+00:00</published><updated>2020-09-20T00: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/"><p>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:</p>
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-20T20:08:38+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-20T00:00:00+00:00</published><updated>2020-09-20T00: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/"><p>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:</p>
2
2
<ul>
3
3
<li>interaction with the back-end</li>
4
4
<li>interaction with the database (especially when we load a lot of data)</li>
0 commit comments