r = self.app.get(self.url_list, user=self.admin)
r = r.click(href=self.url_edit) # click on "edit"
Which results in a 403 response on the click() line. Should the click() be inheriting the session created in the get()? Is there some extra considerations to take? Thanks!
I have the following snippet:
Which results in a 403 response on the click() line. Should the click() be inheriting the session created in the get()? Is there some extra considerations to take? Thanks!