docs(api): fix cdp session creation example (#709)

This commit is contained in:
Vignesh Shanmugam 2020-01-28 16:54:41 +01:00 коммит произвёл Pavel Feldman
Родитель ff302354bb
Коммит 90d84e8879
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -3578,7 +3578,7 @@ Useful links:
- Getting Started with DevTools Protocol: https://github.com/aslushnikov/getting-started-with-cdp/blob/master/README.md
```js
const client = await page.chromium.pageTarget(page).createCDPSession();
const client = await chromium.pageTarget(page).createCDPSession();
await client.send('Animation.enable');
client.on('Animation.animationCreated', () => console.log('Animation created!'));
const response = await client.send('Animation.getPlaybackRate');