Skip to content

Commit 6e8013c

Browse files
[docs] Fix landing page links (DevExpress#5059)
* Fix landing page links * Fix more links in the recent team blog post * One more link
1 parent 0d9ee72 commit 6e8013c

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

docs/articles/blog/2020-4-20-how-to-scroll-web-pages-using-testcafe.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ await t.click('#submit-btn');
2222

2323
## Scroll to a Rendered DOM Element
2424

25-
If you need to scroll a page to display a specific element or area, but don't need to perform an action on the target element, use the [hover](https://devexpress.github.io/testcafe/documentation/test-api/actions/hover.html) method.
25+
If you need to scroll a page to display a specific element or area, but don't need to perform an action on the target element, use the [hover](https://devexpress.github.io/testcafe/documentation/reference/test-api/testcontroller/hover.html) method.
2626

2727
```js
2828
// scroll to the "#country-map" element
@@ -33,7 +33,7 @@ await t.hover('#country-map');
3333

3434
In certain scenarios, elements cannot be identified by a selector. For instance, a page may contain a dynamically generated list of identical items. Another example is virtual scrolling: the element might not exist on a page when the action starts.
3535

36-
A solution in these cases is to use the browser's native API. For example, you can use the [window.scrollBy](https://developer.mozilla.org/en-US/docs/Web/API/Window/scrollBy) method. To access this method, utilize the [ClientFunction](https://devexpress.github.io/testcafe/documentation/test-api/obtaining-data-from-the-client/#creating-client-functions) generator. Calculate the offset between the element and the top of the container, and pass these values to the scrollBy method.
36+
A solution in these cases is to use the browser's native API. For example, you can use the [window.scrollBy](https://developer.mozilla.org/en-US/docs/Web/API/Window/scrollBy) method. To access this method, utilize the [ClientFunction](https://devexpress.github.io/testcafe/documentation/reference/test-api/clientfunction/constructor.html) generator. Calculate the offset between the element and the top of the container, and pass these values to the scrollBy method.
3737

3838
```js
3939
import { ClientFunction } from 'testcafe';
@@ -56,7 +56,7 @@ test(`test`, async t => {
5656

5757
Sometimes offset calculation is not an option. If a page uses virtual scrolling, element heights can change. You may not even know the number of elements above the element to be displayed. You might only know the element's content, such as its display text.
5858

59-
To find an element by text, scroll to the last rendered item on the list so that the next portion of elements are loaded. Continue the process until you locate the element. A selector's [exists](https://devexpress.github.io/testcafe/documentation/test-api/selecting-page-elements/selectors/using-selectors.html#check-if-an-element-exists) property allows you to scan rendered elements and see if an element with that text exists. If it does exist, the search is over. If not, repeat the cycle.
59+
To find an element by text, scroll to the last rendered item on the list so that the next portion of elements are loaded. Continue the process until you locate the element. A selector's [exists](https://devexpress.github.io/testcafe/documentation/guides/basic-guides/select-page-elements.html#check-if-an-element-exists) property allows you to scan rendered elements and see if an element with that text exists. If it does exist, the search is over. If not, repeat the cycle.
6060

6161
```js
6262
import { Selector } from 'testcafe';

docs/articles/index.html

+8-8
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<div class="value value-1">
3232
<p>Works on all popular environments</p>
3333
<div class="description">
34-
<p>TestCafe runs on Windows, MacOS, and Linux. It supports desktop, mobile, remote and cloud <a href="https://devexpress.github.io/testcafe/documentation/using-testcafe/common-concepts/browsers/browser-support.html" target="_blank">browsers</a> (UI or headless).</p>
34+
<p>TestCafe runs on Windows, MacOS, and Linux. It supports desktop, mobile, remote and cloud <a href="https://devexpress.github.io/testcafe/documentation/guides/concepts/browsers.html" target="_blank">browsers</a> (UI or headless).</p>
3535
</div>
3636
</div>
3737
</div>
@@ -141,23 +141,23 @@ <h2>4. View the reports</h2>
141141
<div class="feature feature-1">
142142
<p>Create stable tests<br/>(and no manual timeouts)</p>
143143
<div class="description">
144-
<p>TestCafe automatically waits for page loads and XHRs before the test starts and after each action. It also features smart test actions and <a href="https://devexpress.github.io/testcafe/documentation/test-api/assertions/#smart-assertion-query-mechanism" target="_blank">assertions</a> that wait for page elements to appear. You can change the maximum wait time. If elements load faster, tests skip the timeout and continue.</p>
144+
<p>TestCafe automatically waits for page loads and XHRs before the test starts and after each action. It also features smart test actions and <a href="https://devexpress.github.io/testcafe/documentation/guides/basic-guides/assert.html#smart-assertion-query-mechanism" target="_blank">assertions</a> that wait for page elements to appear. You can change the maximum wait time. If elements load faster, tests skip the timeout and continue.</p>
145145
</div>
146146
</div>
147147
</div>
148148
<div class="feature-container">
149149
<div class="feature feature-2">
150150
<p>Write in latest JS<br/>or TypeScript</p>
151151
<div class="description">
152-
<p>TestCafe supports the latest JavaScript features, including ES2017 (for example, async/await). You can also use <a href="https://devexpress.github.io/testcafe/documentation/test-api/typescript-support.html" target="_blank">TypeScript</a> if you prefer a strongly typed language.</p>
152+
<p>TestCafe supports the latest JavaScript features, including ES2017 (for example, async/await). You can also use <a href="https://devexpress.github.io/testcafe/documentation/guides/concepts/typescript-and-coffeescript.html" target="_blank">TypeScript</a> if you prefer a strongly typed language.</p>
153153
</div>
154154
</div>
155155
</div>
156156
<div class="feature-container">
157157
<div class="feature feature-3">
158158
<p>Detect JS errors<br/>in your code</p>
159159
<div class="description">
160-
<p>TestCafe reports JS errors that it finds on the webpage. Tests automatically fail because of that. However, you can <a href="https://devexpress.github.io/testcafe/documentation/using-testcafe/command-line-interface.html#-e---skip-js-errors" target="_blank">disable this</a>.</p>
160+
<p>TestCafe reports JS errors that it finds on the webpage. Tests automatically fail because of that. However, you can <a href="https://devexpress.github.io/testcafe/documentation/reference/command-line-interface.html#-e---skip-js-errors" target="_blank">disable this</a>.</p>
161161
</div>
162162
</div>
163163
</div>
@@ -167,15 +167,15 @@ <h2>4. View the reports</h2>
167167
<div class="feature feature-4">
168168
<p>Launch<br/>concurrent tests</p>
169169
<div class="description">
170-
<p>TestCafe can open multiple instances of the same browser to run <a href="https://devexpress.github.io/testcafe/documentation/using-testcafe/common-concepts/concurrent-test-execution.html" target="_blank">parallel tests</a> which decreases test execution time.</p>
170+
<p>TestCafe can open multiple instances of the same browser to run <a href="https://devexpress.github.io/testcafe/documentation/guides/basic-guides/run-tests.html#run-tests-concurrently" target="_blank">parallel tests</a> which decreases test execution time.</p>
171171
</div>
172172
</div>
173173
</div>
174174
<div class="feature-container">
175175
<div class="feature feature-5">
176176
<p>Build readable tests<br/>with PageObject</p>
177177
<div class="description">
178-
<p>The TestCafe's <a href="https://devexpress.github.io/testcafe/documentation/test-api/" target="_blank">Test API</a> includes a high-level selector library, assertions, etc. You can combine them to implement readable tests with the <a href="https://devexpress.github.io/testcafe/documentation/recipes/using-page-model.html" target="_blank">PageObject pattern</a>.</p>
178+
<p>The TestCafe's Test API includes a high-level selector library, assertions, etc. You can combine them to implement readable tests with the <a href="https://devexpress.github.io/testcafe/documentation/guides/concepts/page-model.html" target="_blank">PageObject pattern</a>.</p>
179179
<div class="feature-5-code"><code class="page-object-example">const el = Selector('.column').find('label')<br/> .withText('MacOS').child('input');</code></div>
180180
<div class="feature-5-code-mobile"><code class="page-object-example">const el = Selector('.column')
181181
.find('label')
@@ -188,7 +188,7 @@ <h2>4. View the reports</h2>
188188
<div class="feature feature-6">
189189
<p>Include tests in continuous<br/>integration system</p>
190190
<div class="description">
191-
<p>You can run TestCafe from a console, and its reports can be viewed in a CI system's interface (<a href="https://devexpress.github.io/testcafe/documentation/recipes/integrating-testcafe-with-ci-systems/teamcity.html" target="_blank">TeamCity</a>, <a href="https://devexpress.github.io/testcafe/documentation/recipes/integrating-testcafe-with-ci-systems/jenkins.html" target="_blank">Jenkins</a>, <a href="https://devexpress.github.io/testcafe/documentation/recipes/integrating-testcafe-with-ci-systems/travis.html" target="_blank">Travis</a> & etc.)</p>
191+
<p>You can run TestCafe from a console, and its reports can be viewed in a CI system's interface (<a href="https://devexpress.github.io/testcafe/documentation/guides/continuous-integration/teamcity.html" target="_blank">TeamCity</a>, <a href="https://devexpress.github.io/testcafe/documentation/guides/continuous-integration/jenkins.html" target="_blank">Jenkins</a>, <a href="https://devexpress.github.io/testcafe/documentation/guides/continuous-integration/travis.html" target="_blank">Travis</a> & etc.)</p>
192192
</div>
193193
</div>
194194
</div>
@@ -203,7 +203,7 @@ <h2>4. View the reports</h2>
203203
</div>
204204
</div>
205205
<div class="buttons">
206-
<a class="learn-more-button" href="/testcafe/documentation/using-testcafe/common-concepts/live-mode.html">Learn more</a>
206+
<a class="learn-more-button" href="/testcafe/documentation/guides/basic-guides/run-tests.html#live-mode">Learn more</a>
207207
<!-- <a class="video-button">See how it works</a> -->
208208
</div>
209209
</div>

0 commit comments

Comments
 (0)