Václav Votípka
Václav Votípka
I vote for this PR too. The `executable_path` is a must have in my case. Without it the chromedriver is downloaded during each app start which 1. transfers lot of...
Possible workaround without hardcoding the URL structure: ```python s3 = boto3.client('s3', region_name='af-south-1') endpointUrl = s3.meta.endpoint_url s3 = boto3.client('s3', endpoint_url=endpointUrl, region_name='af-south-1') ``` I know, it is not nice, the fix in...
For future readers which come here from a search engine: I had the same issue today. I have two projects which use basic_auth with username and **token**. One project worked...
# Idea It would be nice to have a way to "unescape" a string. Namely, I want to replace * `\n` by new line * `\t` by tab * `\"`...
I can confirm that using `$click('none')` works for me. Better error message will be definitely helpful. You can close this issue, if you do not want to use it for...