我不想用 locust.io 测试我的 django web 应用程序。在 ha 形式中,我遇到的问题是它使用 CSRF 令牌进行保护。我执行以下操作:
class WebsiteTasks(TaskSet):
def on_start(self):
print("On start")
@task
def post_answer(self):
self.client.get("/polls/2/vote")
self.client.post("/polls/2/vote/", {"choice": "8"})
为什么我会收到403
错误消息?该帖子是fobidden的,蝗虫文档说客户端对象使会话保持活动状态..