cefPython と OnBeforeResourceLoad メソッドを使用しようとしています。
次のように実装しました。
def OnBeforeResourceLoad(self, browser, request, redirectURL, streamReader, response, loadFlags):
#
if request.GetUrl() == "http://firsturl":
redirectURL = "http://secondurl"
return False
ただし、プログラムを実行すると、次のようになります。
TypeError: OnBeforeResourceLoad() takes exactly 7 arguments (4 given)
ここで何が間違っていますか?
これに関するドキュメントは次のとおりです。