You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 29, 2024. It is now read-only.
In some cases of our business logic we need to refresh the page and keep in request header Referer value and other values. But actually when we use method browser.refresh it does not send all these information in header. In protractor when we do not set ignoreSynchronization=true, protractor using browser.get(href).
And in documentation there is the following
Makes a full reload of the current page and loads mock modules before
We need to have the method to refresh the page and get Referer value from request header without using ignoreSynchronization=true.
In some cases of our business logic we need to refresh the page and keep in request header Referer value and other values. But actually when we use method browser.refresh it does not send all these information in header. In protractor when we do not set ignoreSynchronization=true, protractor using browser.get(href).
And in documentation there is the following
Makes a full reload of the current page and loads mock modules before
We need to have the method to refresh the page and get Referer value from request header without using ignoreSynchronization=true.