Anton Pilipenko
Anton Pilipenko
I think it is about xpath selector, I've done pull request for it https://github.com/HDE/arsenic/pull/58 ```python async def test_simple_form_submit_xpath(session): await session.get("/html/") field = await session.wait_for_element(5, './/input[@name="field"]', "xpath") await field.send_keys("sample input") submit...
I've done pull request, please check if you have free time https://github.com/HDE/arsenic/pull/58
Duplicate of #22
To send via proxy you can use sock arg. For example: ```python from aiohttp_socks.proxy import create_proxy, ProxyType proxy = create_proxy( host=proxy["hostname"], port=proxy["port"], proxy_type=ProxyType.SOCKS5) await proxy.connect(host, port) await send( message, hostname=None,...
Hello. I've made benchmark, it can run psycopg, aiopg and aiopg_sa. Take note, benchmark runs psycopg with concurrency number of threads. There is only one query into benchmarks, simple select....
Update node benchmark to allow aiopg handles precompiled queries
I've done benchmark to allow execute precompiled queries. I've got: aiopg (sql): 182446 queries in 30 seconds aiopg_sa: 88508 queries in 30 seconds aiopg_sa_cache: 118051 queries in 30 seconds So...
same here, I've got the error. python3.12 ``` pip install wemake-python-styleguide==0.18.0 (venv) ➜ flake8_bug pip freeze astor==0.8.1 attrs==23.2.0 bandit==1.7.7 darglint==1.8.1 docutils==0.20.1 eradicate==2.3.0 flake8==7.0.0 flake8-bandit==4.1.1 flake8-broken-line==1.0.0 flake8-bugbear==23.12.2 flake8-commas==2.1.0 flake8-comprehensions==3.14.0 flake8-debugger==4.1.2 flake8-docstrings==1.7.0...
Yes it works, but http should be replaced with https into all scripts.