Jack Franklin
8370ec88ae
feat(types): add (and fix) evaluateHandle types ( #6130 )
...
This change started as a small change to pull types from DefinitelyTyped over to
Puppeteer for the `evaluateHandle` function but instead ended up also fixing
what looks to be a long standing issue with our existing documentation.
`evaluateHandle` can in fact return an `ElementHandle` rather than a `JSHandle`.
Note that `ElementHandle` extends `JSHandle` so whilst the docs are technically
correct (all ElementHandles are JSHandles) it's confusing because JSHandles
don't have methods like `click` on them, but ElementHandles do.
if you return something that is an HTML element:
```
const button = page.evaluateHandle(() => document.querySelector('button'));
// this is an ElementHandle, not a JSHandle
```
Therefore I've updated the original docs and added a large explanation to the
TSDoc for `page.evaluateHandle`.
In TypeScript land we'll assume the function will return a `JSHandle` but you
can tell TS otherwise via the generic argument, which can only be `JSHandle`
(the default) or `ElementHandle`:
```
const button = page.evaluateHandle<ElementHandle>(() => document.querySelector('button'));
```
2020-07-01 12:44:08 +01:00
..
2020-06-19 15:30:28 +02:00
2020-06-22 17:21:57 +02:00
2020-06-22 17:21:57 +02:00
2020-06-22 17:21:57 +02:00
2020-06-22 17:21:57 +02:00
2020-06-22 17:21:57 +02:00
2020-06-22 17:21:57 +02:00
2020-06-22 17:21:57 +02:00
2020-06-22 17:21:57 +02:00
2020-06-22 17:21:57 +02:00
2020-06-25 15:49:35 +01:00
2020-06-22 17:21:57 +02:00
2020-06-22 17:21:57 +02:00
2020-06-23 07:19:15 +02:00
2020-06-23 07:19:15 +02:00
2020-06-23 07:19:15 +02:00
2020-06-23 07:19:15 +02:00
2020-06-23 07:19:15 +02:00
2020-06-23 07:19:15 +02:00
2020-06-23 07:19:15 +02:00
2020-06-23 07:19:15 +02:00
2020-06-23 07:19:15 +02:00
2020-06-23 07:19:15 +02:00
2020-06-23 07:19:15 +02:00
2020-06-23 07:19:15 +02:00
2020-06-23 07:19:15 +02:00
2020-06-23 07:19:15 +02:00
2020-06-23 07:19:15 +02:00
2020-06-23 07:19:15 +02:00
2020-06-23 07:22:10 +02:00
2020-06-23 07:22:10 +02:00
2020-06-23 07:22:10 +02:00
2020-06-23 07:22:10 +02:00
2020-06-23 07:22:10 +02:00
2020-06-23 07:22:10 +02:00
2020-06-23 07:22:10 +02:00
2020-06-23 07:22:10 +02:00
2020-06-23 07:22:10 +02:00
2020-06-23 12:55:42 +01:00
2020-06-24 09:33:19 +01:00
2020-06-24 09:33:19 +01:00
2020-06-24 09:33:19 +01:00
2020-06-24 09:33:19 +01:00
2020-06-24 09:33:19 +01:00
2020-06-24 09:33:19 +01:00
2020-06-24 09:33:19 +01:00
2020-06-24 09:33:19 +01:00
2020-06-24 09:33:19 +01:00
2020-06-22 12:05:10 +02:00
2020-06-22 12:05:10 +02:00
2020-06-22 17:21:57 +02:00
2020-06-22 17:21:57 +02:00
2020-06-22 17:21:57 +02:00
2020-06-22 17:21:57 +02:00
2020-06-12 12:38:24 +02:00
2020-06-22 09:16:51 +01:00
2020-06-12 12:38:24 +02:00
2020-06-22 13:52:39 +01:00
2020-06-22 13:52:39 +01:00
2020-06-22 13:52:39 +01:00
2020-06-22 13:52:39 +01:00
2020-06-22 13:52:39 +01:00
2020-06-22 13:52:39 +01:00
2020-06-22 13:52:39 +01:00
2020-06-22 13:52:39 +01:00
2020-06-22 13:52:39 +01:00
2020-06-22 13:52:39 +01:00
2020-06-22 13:52:39 +01:00
2020-06-29 09:53:28 +01:00
2020-06-29 09:53:28 +01:00
2020-06-29 09:53:28 +01:00
2020-06-29 09:53:28 +01:00
2020-06-29 09:53:28 +01:00
2020-06-29 09:53:28 +01:00
2020-06-29 09:53:28 +01:00
2020-06-29 09:53:28 +01:00
2020-06-29 09:53:28 +01:00
2020-06-29 09:53:28 +01:00
2020-06-29 09:53:28 +01:00
2020-06-09 09:19:42 +01:00
2020-06-09 09:19:42 +01:00
2020-06-09 09:19:42 +01:00
2020-06-09 09:19:42 +01:00
2020-06-09 09:19:42 +01:00
2020-06-09 09:19:42 +01:00
2020-06-25 15:49:35 +01:00
2020-06-25 13:38:01 +01:00
2020-06-25 15:49:35 +01:00
2020-06-25 13:38:01 +01:00
2020-06-22 17:21:57 +02:00
2020-06-22 17:21:57 +02:00
2020-06-22 17:21:57 +02:00
2020-06-23 12:55:42 +01:00
2020-06-22 17:21:57 +02:00
2020-06-22 17:21:57 +02:00
2020-06-22 17:21:57 +02:00
2020-06-22 17:21:57 +02:00
2020-06-25 15:49:35 +01:00
2020-06-22 17:21:57 +02:00
2020-06-22 17:21:57 +02:00
2020-06-22 17:21:57 +02:00
2020-06-22 17:21:57 +02:00
2020-06-22 17:21:57 +02:00
2020-06-22 17:21:57 +02:00
2020-06-25 13:38:01 +01:00
2020-06-25 13:38:01 +01:00
2020-07-01 12:44:08 +01:00
2020-06-15 11:52:19 +01:00
2020-06-15 11:52:19 +01:00
2020-06-15 11:52:19 +01:00
2020-06-22 09:16:51 +01:00
2020-06-15 11:52:19 +01:00
2020-06-15 11:52:19 +01:00
2020-06-15 11:52:19 +01:00
2020-06-15 11:52:19 +01:00
2020-06-15 11:52:19 +01:00
2020-06-25 13:01:46 +02:00
2020-07-01 12:44:08 +01:00
2020-06-25 13:01:46 +02:00
2020-06-25 13:01:46 +02:00
2020-06-25 13:01:46 +02:00
2020-06-25 13:01:36 +02:00
2020-06-25 13:01:36 +02:00
2020-06-25 13:01:36 +02:00
2020-06-25 13:01:36 +02:00
2020-06-25 13:38:01 +01:00
2020-06-25 13:38:01 +01:00
2020-06-23 12:55:42 +01:00
2020-07-01 12:44:08 +01:00
2020-06-18 12:44:46 +01:00
2020-07-01 12:44:08 +01:00
2020-07-01 12:44:08 +01:00
2020-06-23 12:55:42 +01:00
2020-06-23 12:55:42 +01:00
2020-06-23 12:55:42 +01:00
2020-06-22 09:16:51 +01:00
2020-06-26 09:24:56 +02:00
2020-06-26 09:24:56 +02:00
2020-06-26 09:24:56 +02:00
2020-06-26 09:24:56 +02:00
2020-06-12 12:38:24 +02:00
2020-06-12 12:38:24 +02:00
2020-06-25 13:01:46 +02:00
2020-06-25 13:01:46 +02:00
2020-06-25 13:01:46 +02:00
2020-06-25 13:01:46 +02:00
2020-06-25 13:01:46 +02:00
2020-06-25 13:01:46 +02:00
2020-06-25 13:01:46 +02:00
2020-06-25 13:01:46 +02:00
2020-06-25 13:01:46 +02:00
2020-06-25 13:01:46 +02:00
2020-06-25 13:01:46 +02:00
2020-06-25 13:01:46 +02:00
2020-06-25 13:01:46 +02:00
2020-06-25 13:01:46 +02:00
2020-06-25 13:01:46 +02:00
2020-06-29 09:53:28 +01:00
2020-06-29 09:53:28 +01:00
2020-06-29 09:53:28 +01:00
2020-06-25 15:49:35 +01:00
2020-06-25 15:49:35 +01:00
2020-06-25 13:38:01 +01:00
2020-07-01 12:44:08 +01:00
2020-06-25 15:49:35 +01:00
2020-06-22 17:21:57 +02:00
2020-06-25 15:49:35 +01:00
2020-06-25 15:49:35 +01:00
2020-06-30 15:56:37 +01:00
2020-06-25 15:49:35 +01:00
2020-06-25 13:38:01 +01:00
2020-06-25 13:38:01 +01:00
2020-06-25 13:01:46 +02:00
2020-06-25 13:01:46 +02:00
2020-06-25 13:01:46 +02:00
2020-06-25 13:01:46 +02:00
2020-06-25 13:01:46 +02:00
2020-06-25 13:01:46 +02:00
2020-06-22 17:21:57 +02:00
2020-06-22 17:21:57 +02:00
2020-06-22 17:21:57 +02:00
2020-06-22 17:21:57 +02:00
2020-06-22 17:21:57 +02:00
2020-06-22 17:21:57 +02:00
2020-06-22 17:21:57 +02:00
2020-06-22 17:21:57 +02:00
2020-06-22 17:21:57 +02:00
2020-06-22 17:21:57 +02:00
2020-06-22 17:21:57 +02:00
2020-07-01 12:44:08 +01:00
2020-06-23 12:55:42 +01:00
2020-06-23 12:55:42 +01:00
2020-06-23 12:55:42 +01:00
2020-06-23 12:55:42 +01:00
2020-06-23 12:55:42 +01:00
2020-06-23 12:55:42 +01:00
2020-06-23 12:55:42 +01:00
2020-06-26 09:24:56 +02:00
2020-06-23 12:55:42 +01:00
2020-06-23 12:55:42 +01:00
2020-06-23 12:55:42 +01:00
2020-06-23 12:55:42 +01:00
2020-06-23 12:55:42 +01:00
2020-06-23 12:55:42 +01:00
2020-06-25 13:01:36 +02:00
2020-06-25 13:01:36 +02:00
2020-06-25 13:01:36 +02:00
2020-06-25 13:01:36 +02:00
2020-06-25 13:01:36 +02:00
2020-06-25 13:38:01 +01:00
2020-06-26 09:24:56 +02:00
2020-06-25 13:38:01 +01:00
2020-06-26 09:24:56 +02:00
2020-06-26 09:24:56 +02:00
2020-07-01 12:44:08 +01:00
2020-06-26 09:24:56 +02:00
2020-06-26 09:24:56 +02:00
2020-06-26 09:24:56 +02:00
2020-06-26 09:24:56 +02:00
2020-06-26 09:24:56 +02:00
2020-06-26 09:24:56 +02:00
2020-06-26 09:24:56 +02:00
2020-06-23 12:55:42 +01:00
2020-06-26 09:24:56 +02:00
2020-06-26 09:24:56 +02:00
2020-06-26 09:24:56 +02:00
2020-06-26 09:24:56 +02:00
2020-06-26 09:24:56 +02:00
2020-06-26 09:24:56 +02:00
2020-06-26 09:24:56 +02:00
2020-06-26 09:24:56 +02:00
2020-07-01 12:44:08 +01:00
2020-06-26 09:24:56 +02:00
2020-07-01 12:44:08 +01:00
2020-06-26 09:24:56 +02:00
2020-06-26 09:24:56 +02:00
2020-06-12 11:10:12 +01:00
2020-06-22 17:21:57 +02:00
2020-06-22 17:21:57 +02:00
2020-06-22 17:21:57 +02:00
2020-06-25 13:01:46 +02:00
2020-06-25 13:01:46 +02:00
2020-06-25 13:01:46 +02:00
2020-06-25 13:01:46 +02:00
2020-06-25 13:01:46 +02:00
2020-06-25 13:01:46 +02:00
2020-06-25 13:01:46 +02:00
2020-06-29 16:13:24 +01:00
2020-06-25 13:01:46 +02:00
2020-06-25 13:01:46 +02:00
2020-06-25 13:01:46 +02:00
2020-06-25 13:01:46 +02:00
2020-06-19 15:30:28 +02:00
2020-06-19 15:30:28 +02:00
2020-06-19 15:30:28 +02:00
2020-06-19 15:30:28 +02:00
2020-06-19 15:30:28 +02:00
2020-06-19 15:30:28 +02:00
2020-06-19 15:30:28 +02:00
2020-06-25 13:38:01 +01:00
2020-06-25 13:38:01 +01:00
2020-06-22 14:57:04 +02:00
2020-06-22 14:57:04 +02:00
2020-06-22 14:57:04 +02:00
2020-06-22 14:57:04 +02:00
2020-06-22 14:57:04 +02:00
2020-06-22 14:57:04 +02:00
2020-06-22 14:57:04 +02:00
2020-06-22 10:34:57 +02:00
2020-06-25 13:01:12 +02:00
2020-06-25 13:01:12 +02:00
2020-06-25 13:01:46 +02:00
2020-06-25 13:01:46 +02:00
2020-06-25 13:01:46 +02:00
2020-06-26 09:24:56 +02:00
2020-06-26 09:24:56 +02:00
2020-06-26 09:24:56 +02:00
2020-06-23 07:19:15 +02:00
2020-06-23 07:19:15 +02:00
2020-06-26 09:24:56 +02:00
2020-06-26 09:24:56 +02:00
2020-06-17 16:26:10 +01:00
2020-07-01 12:44:08 +01:00
2020-06-17 16:26:10 +01:00
2020-06-22 09:16:51 +01:00
2020-06-17 16:26:10 +01:00