-
## Issue
Running `tab.find_elements()` takes **>150** times as long as running `document.querySelectorAll()` in Javascript.
I'm not sure if I'm doing something wrong or if this the expected pe…
-
/-_/description
Which ons is faster among them?
/-_/html
Some text data to select
/-_/js1
var x = document.getElementById('test');
/-_/js2
var y = document.querySelector('test');
/-_/js3
var…
-
The following can be tested directly on https://npm.runkit.com/happy-dom
There I entered the following
```js
var happyDom = require("happy-dom");
const window = new happyDom.Window();
const doc…
-
same as the [dash](https://github.com/ChukwuEmekaAjah/beautiful-dom/issues/5) issue, but with underscores
edit: apparently underscores work, but it seems to hang when it doesnt find anything
ghost updated
3 years ago
-
Please see the attached screenshot
![DASH-error](https://github.com/user-attachments/assets/49e0171a-c9f9-4fe5-9adf-d82049421098)
-
TLDR: use `browser.proxy.onRequest`.
MDN doc about the [firefox's proxy API](https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/proxy), it's quite different from chromium's …
-
Hello. I've started to receive this error recently when using the script.
Loading failed, please refresh to retry
Error message: TypeError: this.html.querySelectorAll(...)[0] is undefined
Versi…
-
### Verify canary release
- [X] I verified that the issue exists in the latest Next.js canary release
### Provide environment information
```bash
Operating System:
Platform: darwin
Ar…
-
# 1. Loop(반복문)
(1)
```html
document.write('1');
var i = 0; // The value of i is curretly 0 (i의 값은 현재 0)
while(i < 3) {
document.write('2');
document.write('3');…
-
For some reason the visible index is always the same as the index on the `data` coming from `labelRenderer` and `sampleLabelRenderer`.
Shouldn't one of those values reflect the value of the dropdow…