playwright/tests/assets
João Neves 7e6e5f0706
feat: Support React forwards refs and memo (#23262)
This PR fixes the react selector behavior to support components that are
wrapped by the memo or forwardRef React builtin functions.

Previously these components couldn't be selected. This PR fixes that
behavior, enabling selecting those components.

Current behavior:
```
const Foo = memo(() => <div id="foo_component" />);
Foo.displayName = "Foo";
...
playwright.$("_react=Foo") -> undefined
```

Fixed behavior:
```
const Foo = memo(() => <div id="foo_component" />);
Foo.displayName = "Foo";
...
playwright.$("_react=Foo") -> <div id ="foo_component" />
```
2023-05-30 17:14:47 -07:00
..
axe-core chore: fix typos (#20473) 2023-01-30 09:53:28 +01:00
cached test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
csscoverage test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
digits test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
es6 test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
frames test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
input fix: should be able to upload multiple large files (#23360) 2023-05-30 18:41:09 +02:00
jscoverage test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
load-event test(goto): add failing load event test for webkit (#8809) 2021-09-09 12:42:46 -07:00
modernizr feat(webkit): roll to r1667 (#14960) 2022-06-21 14:04:52 -07:00
popup test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
react test: add a test for clicking on material ui select (#10652) 2021-12-01 15:14:28 -08:00
reading-list feat: Support React forwards refs and memo (#23262) 2023-05-30 17:14:47 -07:00
screenshots test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
selenium-grid test: update selenium server and try to reenable tests (#22391) 2023-04-13 14:15:09 -07:00
serviceworkers fix: Service Workers+Interception: missing page-level Network events (#15549) 2022-07-12 13:23:35 -07:00
shared-worker fix(chromium): detach from shared workers (#18976) 2022-11-22 15:20:42 -08:00
simple-extension test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
stress test(stress): add stress tests (#14240) 2022-05-18 09:50:58 -07:00
wasm test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
webfont feat(screenshot): introduce new "fonts" option for screenshots (#12661) 2022-03-10 16:54:36 -08:00
worker test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
wpt chore: fix typos (#20473) 2023-01-30 09:53:28 +01:00
background-color.html test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
beforeunload.html test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
button-overlay-oopif.html test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
callback.js test: bring new folio and migrate small amount of tests to it (#5994) 2021-04-01 16:35:26 -07:00
checkerboard.html test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
chromium-linux.zip test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
consolelog.html test: update "page.goBack should work for file urls" to match status quo (#16810) 2022-08-26 08:56:31 -07:00
counter.html feat(firefox): roll Firefox & Firefox Beta (#20670) 2023-02-06 14:08:32 -08:00
csp.html test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
css-transition.html feat: introduce disableAnimations option for screenshots (#11870) 2022-02-09 12:52:11 -08:00
deep-shadow.html test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
detect-touch.html test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
dom.html feat(inputValue): implement inputValue for select elements (#7951) 2021-08-03 08:22:40 -07:00
download-blob.html test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
drag-n-drop.html test: unflake page-drag tests (#17783) 2022-10-03 12:26:36 -07:00
dummy_bad_browser_executable.js test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
dynamic-oopif.html test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
empty-standard-mode.html feat(firefox-beta): roll to r1310 (#10954) 2021-12-15 17:33:09 -08:00
empty.html test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
empty.pdf test: add test for downloading PDF files (#9235) 2021-09-30 17:50:13 +02:00
error.html feat(firefox-beta): roll to r1310 (#10954) 2021-12-15 17:33:09 -08:00
example.mp3 test: add test for playing audio (#10890) 2021-12-13 15:02:06 -08:00
file to upload.txt test: repro for spaces in filename for input (#17452) 2022-09-20 12:58:26 -07:00
file-to-upload-2.txt test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
file-to-upload.txt test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
formatted-number.html test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
geolocation.html test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
global-var.html test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
grid-iframe-in-shadow.html test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
grid.html test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
har-fulfill.har feat(har): introduce the slim mode (#15053) 2022-06-22 14:44:12 -07:00
har-redirect.har feat(har): introduce the slim mode (#15053) 2022-06-22 14:44:12 -07:00
har-sha1-main-response.txt feature(har): add testOptions.har (#14991) 2022-06-20 13:37:31 -07:00
har-sha1.har feat(har): introduce the slim mode (#15053) 2022-06-22 14:44:12 -07:00
har.html test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
highdpi.html test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
historyapi.html test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
injectedfile.js test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
injectedstyle.css test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
media-query-prefers-color-scheme.svg test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
mobile.html test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
modernizr.html fix(webkit): improve orientation detection (#11481) 2022-01-19 10:07:38 -08:00
modernizr.js test: add failing modernizr detection tests (#7453) 2021-07-03 19:18:21 -07:00
movie.mp4 test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
movie.ogv test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
movie.webm test: webm video player (#20421) 2023-01-27 09:48:47 -08:00
mui.html test: add a test for clicking on material ui select (#10652) 2021-12-01 15:14:28 -08:00
networkidle-frame.html test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
networkidle.html test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
networkidle.js test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
offscreenbuttons.html test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
one-style.css test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
one-style.html fix: address ff test failure with new event mode 2022-11-10 17:31:43 -08:00
overflow-large.html test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
overflow.html test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
player.html test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
playground.html test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
pptr.png test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
prefetch.html fix(body): fetch body explicitly for prefetched scripts (#14941) 2022-06-16 22:07:43 -07:00
prefetch.js fix(body): fetch body explicitly for prefetched scripts (#14941) 2022-06-16 22:07:43 -07:00
preload.html test: link preload interception (#16908) 2022-08-30 10:35:55 -07:00
react.html test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
redirectloop1.html test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
redirectloop2.html test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
resetcss.html test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
rotate-pseudo.html feat: introduce disableAnimations option for screenshots (#11870) 2022-02-09 12:52:11 -08:00
rotate-z-shadow-dom.html feat: introduce disableAnimations option for screenshots (#11870) 2022-02-09 12:52:11 -08:00
rotate-z.html feat: introduce disableAnimations option for screenshots (#11870) 2022-02-09 12:52:11 -08:00
sectionselectorengine.js test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
self-request.html test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
shadow-dom-link.html test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
shadow.html test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
simple.json test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
simplezip.json fix(size): fix some of the request.size() problems (#8645) 2021-09-02 10:39:57 -07:00
tamperable.html test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
title.html test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
trace-1.31.zip chore: fix trace viewer backwards compat (#21935) 2023-03-23 12:49:53 -07:00
video_mp4.html test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
video_webm.html test: webm video player (#20421) 2023-01-27 09:48:47 -08:00
video.html test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00
web-animation.html feat: introduce disableAnimations option for screenshots (#11870) 2022-02-09 12:52:11 -08:00
window-stop.html test: goto finishes on window.stop() (#10070) 2021-11-05 16:51:22 -07:00
wrappedlink.html test: move remaining files from old test/ directory (#6081) 2021-04-05 15:51:45 -07:00