Result list import/export
See original GitHub issueI always want to compare a set of frameworks to each other and ignore everything else. But this is currently time-consuming, as I should click the frameworks one by one each time.
I have written a simple script that automates my work, but I think there should be an import/export configuration that allows saving the state of the benchmark list.
const frameworks = [
"angular-v12.0.1",
"elm-v0.19.1-3",
"inferno-v7.4.8",
"lit-html-v1.1.0",
"preact-v10.5.14",
"react-v17.0.1",
"react-hooks-v17.0.1",
"solid-v1.1.0",
"stencil-v2.6.0",
"svelte-v3.42.1",
"vanillajs",
"vue-v3.2.1",
];
document.querySelector("#root > div > div.selectBar > div > div:nth-child(1) > button").click();
document.querySelector("#root > div > div.selectBar > div > div.open.dropdown-container > div.show.dropdown-menu > div:nth-child(1) > div.float-rt > button:nth-child(1)"
).click();
[
...document.querySelectorAll(
"#root > div > div.selectBar > div > div.open.dropdown-container > div.show.dropdown-menu > div:nth-child(1) > div.grid > div"
),
]
.filter((elm) => frameworks.includes(elm.children[1].textContent))
.forEach((elm) => elm.firstElementChild.click());
Issue Analytics
- State:
- Created 2 years ago
- Comments:5 (5 by maintainers)
Top Results From Across the Web
Access Data Import/Export List Files
From the main menu, click (or tap) Imports/Exports. A data export list appears. · Select an export with a COMPLETE status, and click...
Read more >View your contact list import and export activity
The import and export activity for your account gives you lots of useful information to help you better manage your contacts and your...
Read more >MONTHLY U.S. INTERNATIONAL TRADE IN GOODS AND ...
Average exports decreased $1.4 billion to $258.9 billion in October. • Average imports increased $1.1 billion to $331.6 billion in October. U.S. ...
Read more >List of U.S. states and territories by exports and imports
National rank State/territory Exports in US$ % of states GDP Largest market Largest...
— United States $1,665,992,031,822 8.0 Canada transport...
1 Texas $315,938,509,210 17.3 Mexico...
Read more >Import & Export Library | Food Safety and Inspection Service
Access export requirements for meat, poultry, based on country, product, or by date using our search filter, as well as countries and products...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Fixed with #1048
Would storing the previous frameworks and benchmarks selection in the browser’s localstorage help?