Skip to content

Add: Adding content to page load strategy #259

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Mar 2, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions docs_source_files/content/webdriver/page_loading_strategy.de.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,20 @@ it follows the _normal_ pageLoadStrategy.
It is always recommended to stop downloading additional
resources (like images, css, js) when the page loading takes lot of time.

The `document.readyState` property of a document describes the loading state of the current document.
By default, WebDriver will hold off on responding to a `driver.get()` (or) `driver.navigate().to()`
call until the document ready state is `complete`

In SPA applications (like Angular, react, Ember) once the dynamic content
is already loaded (I.e once the pageLoadStrategy status is COMPLETE),
clicking on a link or performing some action within the page will not make a new request
to the server as the content is dynamically loaded at the client side without a pull page refresh.

SPA applications can load many views dynamically
without any server requests, So pageLoadStrategy
will always show `COMPLETE` status until
we do a new `driver.get()` and `driver.naviagte().to()`

WebDriver _pageLoadStrategy_ supports the following values:

## normal
Expand Down
15 changes: 15 additions & 0 deletions docs_source_files/content/webdriver/page_loading_strategy.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,20 @@ it follows the _normal_ pageLoadStrategy.
It is always recommended to stop downloading additional
resources (like images, css, js) when the page loading takes lot of time.

The `document.readyState` property of a document describes the loading state of the current document.
By default, WebDriver will hold off on responding to a `driver.get()` (or) `driver.navigate().to()`
call until the document ready state is `complete`

In SPA applications (like Angular, react, Ember) once the dynamic content
is already loaded (I.e once the pageLoadStrategy status is COMPLETE),
clicking on a link or performing some action within the page will not make a new request
to the server as the content is dynamically loaded at the client side without a pull page refresh.

SPA applications can load many views dynamically
without any server requests, So pageLoadStrategy
will always show `COMPLETE` status until
we do a new `driver.get()` and `driver.naviagte().to()`

WebDriver _pageLoadStrategy_ supports the following values:

## normal
Expand Down Expand Up @@ -247,3 +261,4 @@ fun main() {
}
{{< / code-panel >}}
{{< / code-tab >}}

14 changes: 14 additions & 0 deletions docs_source_files/content/webdriver/page_loading_strategy.es.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,20 @@ it follows the _normal_ pageLoadStrategy.
It is always recommended to stop downloading additional
resources (like images, css, js) when the page loading takes lot of time.

The `document.readyState` property of a document describes the loading state of the current document.
By default, WebDriver will hold off on responding to a `driver.get()` (or) `driver.navigate().to()`
call until the document ready state is `complete`

In SPA applications (like Angular, react, Ember) once the dynamic content
is already loaded (I.e once the pageLoadStrategy status is COMPLETE),
clicking on a link or performing some action within the page will not make a new request
to the server as the content is dynamically loaded at the client side without a pull page refresh.

SPA applications can load many views dynamically
without any server requests, So pageLoadStrategy
will always show `COMPLETE` status until
we do a new `driver.get()` and `driver.naviagte().to()`

WebDriver _pageLoadStrategy_ supports the following values:

## normal
Expand Down
14 changes: 14 additions & 0 deletions docs_source_files/content/webdriver/page_loading_strategy.fr.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,20 @@ it follows the _normal_ pageLoadStrategy.
It is always recommended to stop downloading additional
resources (like images, css, js) when the page loading takes lot of time.

The `document.readyState` property of a document describes the loading state of the current document.
By default, WebDriver will hold off on responding to a `driver.get()` (or) `driver.navigate().to()`
call until the document ready state is `complete`

In SPA applications (like Angular, react, Ember) once the dynamic content
is already loaded (I.e once the pageLoadStrategy status is COMPLETE),
clicking on a link or performing some action within the page will not make a new request
to the server as the content is dynamically loaded at the client side without a pull page refresh.

SPA applications can load many views dynamically
without any server requests, So pageLoadStrategy
will always show `COMPLETE` status until
we do a new `driver.get()` and `driver.naviagte().to()`

WebDriver _pageLoadStrategy_ supports the following values:

## normal
Expand Down
14 changes: 14 additions & 0 deletions docs_source_files/content/webdriver/page_loading_strategy.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ weight: 8
デフォルトでは、Selenium WebDriverがページを読み込む場合、 pageLoadStrategy は _normal_ となります。
ページの読み込みに時間がかかる場合は、追加のリソース(画像、CSS、JSなど)のダウンロードを停止することを常にお勧めします。

The `document.readyState` property of a document describes the loading state of the current document.
By default, WebDriver will hold off on responding to a `driver.get()` (or) `driver.navigate().to()`
call until the document ready state is `complete`

In SPA applications (like Angular, react, Ember) once the dynamic content
is already loaded (I.e once the pageLoadStrategy status is COMPLETE),
clicking on a link or performing some action within the page will not make a new request
to the server as the content is dynamically loaded at the client side without a pull page refresh.

SPA applications can load many views dynamically
without any server requests, So pageLoadStrategy
will always show `COMPLETE` status until
we do a new `driver.get()` and `driver.naviagte().to()`

WebDriverの _pageLoadStrategy_ は以下の値をサポートします。

## normal
Expand Down
15 changes: 14 additions & 1 deletion docs_source_files/content/webdriver/page_loading_strategy.ko.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,20 @@ it follows the _normal_ pageLoadStrategy.
It is always recommended to stop downloading additional
resources (like images, css, js) when the page loading takes lot of time.

The `document.readyState` property of a document describes the loading state of the current document.
By default, WebDriver will hold off on responding to a `driver.get()` (or) `driver.navigate().to()`
call until the document ready state is `complete`

In SPA applications (like Angular, react, Ember) once the dynamic content
is already loaded (I.e once the pageLoadStrategy status is COMPLETE),
clicking on a link or performing some action within the page will not make a new request
to the server as the content is dynamically loaded at the client side without a pull page refresh.

SPA applications can load many views dynamically
without any server requests, So pageLoadStrategy
will always show `COMPLETE` status until
we do a new `driver.get()` and `driver.naviagte().to()`

WebDriver _pageLoadStrategy_ supports the following values:

## normal
Expand Down Expand Up @@ -253,4 +267,3 @@ fun main() {
}
{{< / code-panel >}}
{{< / code-tab >}}

15 changes: 15 additions & 0 deletions docs_source_files/content/webdriver/page_loading_strategy.nl.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,20 @@ it follows the _normal_ pageLoadStrategy.
It is always recommended to stop downloading additional
resources (like images, css, js) when the page loading takes lot of time.

The `document.readyState` property of a document describes the loading state of the current document.
By default, WebDriver will hold off on responding to a `driver.get()` (or) `driver.navigate().to()`
call until the document ready state is `complete`

In SPA applications (like Angular, react, Ember) once the dynamic content
is already loaded (I.e once the pageLoadStrategy status is COMPLETE),
clicking on a link or performing some action within the page will not make a new request
to the server as the content is dynamically loaded at the client side without a pull page refresh.

SPA applications can load many views dynamically
without any server requests, So pageLoadStrategy
will always show `COMPLETE` status until
we do a new `driver.get()` and `driver.naviagte().to()`

WebDriver _pageLoadStrategy_ supports the following values:

## normal
Expand Down Expand Up @@ -253,3 +267,4 @@ fun main() {
}
{{< / code-panel >}}
{{< / code-tab >}}

Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,20 @@ it follows the _normal_ pageLoadStrategy.
It is always recommended to stop downloading additional
resources (like images, css, js) when the page loading takes lot of time.

The `document.readyState` property of a document describes the loading state of the current document.
By default, WebDriver will hold off on responding to a `driver.get()` (or) `driver.navigate().to()`
call until the document ready state is `complete`

In SPA applications (like Angular, react, Ember) once the dynamic content
is already loaded (I.e once the pageLoadStrategy status is COMPLETE),
clicking on a link or performing some action within the page will not make a new request
to the server as the content is dynamically loaded at the client side without a pull page refresh.

SPA applications can load many views dynamically
without any server requests, So pageLoadStrategy
will always show `COMPLETE` status until
we do a new `driver.get()` and `driver.naviagte().to()`

WebDriver _pageLoadStrategy_ supports the following values:

## normal
Expand Down Expand Up @@ -247,4 +261,3 @@ fun main() {
}
{{< / code-panel >}}
{{< / code-tab >}}