Clear localstorage with Casperjs

前端 未结 3 456
温柔的废话
温柔的废话 2021-01-14 23:45

I\'m using casperjs to do some testings of a backbonejs application using localstorage.

My problem is that I can not clear the localstorage when testing with casperj

3条回答
  •  南方客
    南方客 (楼主)
    2021-01-15 00:03

    What about running this after loading a page ?

    casper.evaluate(function() {
      localStorage.clear();
    }, {});
    

提交回复
热议问题