From eabba567bcac4f4db331f86750784ba698d32823 Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Mon, 30 Mar 2020 16:16:28 -0700 Subject: [PATCH] docs(api.md): clarify `jshandle.getProperties()` method (#1594) Fixes #1592 --- docs/api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api.md b/docs/api.md index ad48ceb914..bb4446a21e 100644 --- a/docs/api.md +++ b/docs/api.md @@ -2871,7 +2871,7 @@ See [page.evaluateHandle()](#pageevaluatehandlepagefunction-arg) for more detail #### jsHandle.getProperties() - returns: <[Promise]<[Map]<[string], [JSHandle]>>> -The method returns a map with property names as keys and JSHandle instances for the property values. +The method returns a map with **own property names** as keys and JSHandle instances for the property values. ```js const handle = await page.evaluateHandle(() => ({window, document}));