0
実行時にPhantomJSのプロキシをdinamically変更する方法があります。 C#
でC#を使用してSelenium.Webdriver + PhantomJSで実行時にプロキシを変更
driver = webdriver.PhantomJS()
driver.command_executor._commands['executePhantomScript'] = ('POST', '/session/$sessionId/phantom/execute')
driver.execute('executePhantomScript', {'script': '''phantom.setProxy("10.0.0.1", 80);''', 'args' : [] })
私がしようとしている:ここでpython
コードです
((IJavaScriptExecutor)driver).ExecuteScript(@"phantom.setProxy(""10.0.0.1"", 80)");
取得例外:
{ "にErrorMessage": ": ファントム変数を見つけることができません" {"受け入れ": "アプリケーション/ json、 イメージ/ png"、 "接続": "閉じる"、 "コンテンツ長": "62"、 "コンテンツタイプ": "要求" "application/json; charset = utf-8"、 "Host": "localhost:5 "POST"、 "post": "{\"スクリプト\ ":\" phantom.setProxy(\\ "10.0.0.1 \\"、 80) "、" "、"ファイル ":"実行 "、"実行 "、" "/"、 "パス": "/実行"、 "相対": "/実行"、 "ポート": ""、 "ホスト": ""、 "パスワード": ""、 "ユーザー" ":"、 "userInfo": ""、 "authority": ""、 "protocol": ""、 "source": "/ execute"、 "queryKey":{}、 "chunks" ]}、 "urlOriginal": "/セッション/ 513f2130-26b4-11e7-b459-45c0e08b428c /実行"}}
完璧に動作します。 – AsValeO