PythonのSeleniumでChrome Developer ToolsのNetwork表示されるリクエストのPreviewタブに表示される値の取得を試みています。
Python
1import chromedriver_binary 2from selenium import webdriver 3from selenium.webdriver.common.desired_capabilities import DesiredCapabilities 4import json 5 6capabilities = DesiredCapabilities.CHROME 7capabilities['goog:loggingPrefs'] = {'performance': 'ALL'} 8 9options = webdriver.ChromeOptions() 10options.add_argument('--headless') 11driver = webdriver.Chrome(options=options, desired_capabilities=capabilities) 12 13driver.get('https://google.com/') 14 15lst_json = [json.loads(entry_json['message']) for entry_json in driver.get_log('performance')]
上記のスクリプトでNetworkのHeadersタブに表示される値をJSON形式で取得することはできたのですが、
同じようにJSON形式でPreviewタブに表示される値を取得する方法をご教示頂けますでしょうか。
よろしくお願いいたします。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。