2022-07-05 13:41:43 +00:00
|
|
|
---
|
|
|
|
sidebar_label: Page.emulateIdleState
|
|
|
|
---
|
|
|
|
|
|
|
|
# Page.emulateIdleState() method
|
|
|
|
|
|
|
|
Emulates the idle state. If no arguments set, clears idle state emulation.
|
|
|
|
|
|
|
|
**Signature:**
|
|
|
|
|
|
|
|
```typescript
|
|
|
|
class Page {
|
|
|
|
emulateIdleState(overrides?: {
|
|
|
|
isUserActive: boolean;
|
|
|
|
isScreenUnlocked: boolean;
|
|
|
|
}): Promise<void>;
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
|
|
|
| Parameter | Type | Description |
|
|
|
|
| --------- | ----------------------------------------------------- | -------------------------------------------------------------------- |
|
|
|
|
| overrides | { isUserActive: boolean; isScreenUnlocked: boolean; } | <i>(Optional)</i> Mock idle state. If not set, clears idle overrides |
|
|
|
|
|
|
|
|
**Returns:**
|
|
|
|
|
|
|
|
Promise<void>
|
|
|
|
|
|
|
|
## Example
|
|
|
|
|
|
|
|
```ts
|
|
|
|
// set idle emulation
|
|
|
|
await page.emulateIdleState({isUserActive: true, isScreenUnlocked: false});
|
|
|
|
|
|
|
|
// do some checks here
|
|
|
|
...
|
|
|
|
|
|
|
|
// clear idle emulation
|
|
|
|
await page.emulateIdleState();
|
|
|
|
```
|