omnius 1.0.204 → 1.0.206
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +7621 -5759
- package/dist/scripts/web_scrape.py +1 -1
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
|
@@ -401,7 +401,7 @@ class Tools:
|
|
|
401
401
|
el = WebDriverWait(drv, timeout).until(EC.element_to_be_clickable((By.CSS_SELECTOR, selector)))
|
|
402
402
|
drv.execute_script("arguments[0].scrollIntoView({block:'center'});", el)
|
|
403
403
|
el.clear()
|
|
404
|
-
el.send_keys(text
|
|
404
|
+
el.send_keys(text)
|
|
405
405
|
log_message(f"[input] Sent {text!r} to {selector}", "DEBUG")
|
|
406
406
|
return f"Sent {text!r} to {selector}"
|
|
407
407
|
except Exception as e:
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "omnius",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.206",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "omnius",
|
|
9
|
-
"version": "1.0.
|
|
9
|
+
"version": "1.0.206",
|
|
10
10
|
"bundleDependencies": [
|
|
11
11
|
"image-to-ascii"
|
|
12
12
|
],
|
package/package.json
CHANGED