Skip to content

docs: fix info about wait-commands #78

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
5 changes: 0 additions & 5 deletions docs/commands/element/waitForClickable.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,6 @@ import Admonition from "@theme/Admonition";

Use the `waitForClickable` command to wait until an element becomes clickable or unclickable within a specified number of milliseconds.

<Admonition type="warning">
Unlike other element commands, Testplane will not wait for the element to exist before executing
this command.
</Admonition>

## Usage {#usage}

```javascript
Expand Down
5 changes: 0 additions & 5 deletions docs/commands/element/waitForDisplayed.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,6 @@ import Admonition from "@theme/Admonition";

Use the `waitForDisplayed` command to wait until an element becomes displayed or not displayed within a specified number of milliseconds.

<Admonition type="warning">
Unlike other element commands, Testplane will not wait for the element to exist before executing
this command.
</Admonition>

## Usage {#usage}

```javascript
Expand Down
5 changes: 0 additions & 5 deletions docs/commands/element/waitForEnabled.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,6 @@ import Admonition from "@theme/Admonition";

Use the `waitForEnabled` command to wait until an element becomes enabled or disabled within a specified number of milliseconds.

<Admonition type="warning">
Unlike other element commands, Testplane will not wait for the element to exist before executing
this command.
</Admonition>

## Usage {#usage}

```javascript
Expand Down
5 changes: 0 additions & 5 deletions docs/commands/element/waitForExist.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,6 @@ Use the `waitForExist` command to wait until an element appears in the DOM withi

The command returns `true` if the selector matches at least one element existing in the DOM; otherwise, it throws an error. If the `reverse` parameter is set to `true`, the command reverses its logic and returns `true` if the selector matches no elements.

<Admonition type="warning">
Unlike other element commands, Testplane will not wait for the element to exist before executing
this command.
</Admonition>

## Usage {#usage}

```javascript
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,6 @@ import Admonition from "@theme/Admonition";

Используйте команду `waitForClickable`, чтобы подождать, пока элемент в течение указанного количества миллисекунд не станет кликабельным или не кликабельным.

<Admonition type="warning">
В отличие от других команд элемента, testplane не будет дожидаться существования элемента, чтобы
выполнить эту команду.
</Admonition>

## Использование {#usage}

```javascript
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,6 @@ import Admonition from "@theme/Admonition";

Используйте команду `waitForDisplayed`, чтобы подождать, пока элемент в течение указанного количества миллисекунд не станет отображаемым или не отображаемым.

<Admonition type="warning">
В отличие от других команд элемента, testplane не будет дожидаться существования элемента, чтобы
выполнить эту команду.
</Admonition>

## Использование {#usage}

```javascript
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,6 @@ import Admonition from "@theme/Admonition";

Используйте команду `waitForEnabled`, чтобы подождать, пока элемент в течение указанного количества миллисекунд не станет включенным _(enabled)_ или отключенным _(disabled)_.

<Admonition type="warning">
В отличие от других команд элемента, testplane не будет дожидаться существования элемента, чтобы
выполнить эту команду.
</Admonition>

## Использование {#usage}

```javascript
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,6 @@ import Admonition from "@theme/Admonition";

Команда возвращает значение `true`, если селектор соответствует хотя бы одному элементу, существующему в DOM, в противном случае выдает ошибку. Если параметр `reverse` имеет значение `true`, то команда поменяет логику и вернет значение `true`, если селектор не соответствует ни одному элементу.

<Admonition type="warning">
В отличие от других команд элемента, testplane не будет дожидаться существования элемента, чтобы
выполнить эту команду.
</Admonition>

## Использование {#usage}

```javascript
Expand Down
Loading