"selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 78"
こんな感じのエラー
ChromeDriverとChromeのバージョン違いらしい
ChromeDriverをダウングレード
pip install chromedriver-binary~=78.0.3904.105
参考サイト
https://qiita.com/H2O_HoriHori/items/ad7f9855cfc20b995c42
https://qiita.com/akiko-pusu/items/86faca0cb9c877896c04
http://chromedriver.chromium.org/downloads
jinja2
リストに連番を表示させたい
{% for comment in comments %}
<p>{{loop.index}} : {{comment}}</p>
{% endfor %}
loop.index0にすると0からになるようだ
https://jinja.palletsprojects.com/en/master/templates/#for
ページを取得できない
<html xmlns="http://www.w3.org/1999/xhtml"><head></head><body></body></html>
こんな感じ
UAを変える、SSLやCAエラー無効等の設定変更で取得できたりできなかったり
最終的にChromeDriverとChromeのバージョンを上げたところ取得できるようになった