Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
既に保存されているデータをフェッチする例をたくさん見てきましたが、保存された値をフェッチする例はありませんでした。
この方法で browser.executeScript() を介して localStorage にアクセスできます。
価値を得る
var value = browser.executeScript("return window.localStorage.getItem('myKey');");
設定値
browser.executeScript("window.localStorage.setItem('myKey', 'myValue');");