1

I testing my web app with geb.

How i can get item from site localStorage using GEB?

Any help?

I look this answer, but it doesn't work for me.

Community
  • 1
  • 1
plsgogame
  • 1,334
  • 15
  • 28

1 Answers1

0

I solve this problem. I add LocalStorage.java class from my project and use:

    LocalStorage localStorage = new LocalStorage(driver);
    def output = localStorage.getItemFromLocalStorage("example");
    return output;

Thanks @roydekleijn!

plsgogame
  • 1,334
  • 15
  • 28