I am automating tests with selenium.
If I click on an element or refresh my page then my cookies get lost.
What I am doing wrong?
self.selenium.get("http://" + hostname +":8089/")
self.selenium.add_cookie(cookie)
self.selenium.refresh()
# => cookie is there
self.selenium.refresh()
# => cookie is not here anymore