S Akshay Ответов: 0

Отправка запросов на https-сайты с использованием файла Python (задается в качестве входных данных для locust framework))


I am using Locust framework for which python file is needed as input. 

I have imported following in my python file code:
1)HttpLocust 2)TaskSet 3)task 4)events 5)web 6)datetime 7)time

In python file, I am writing http request using methods:
1)self.client.get 2) self.client.post

I am observing response of these requests in fiddler.
This is all about sending requests to http sites.

But while sending requests to https sites by using same syntax,response is not observed in fiddler.
Even for get requests also, The "response status code" is 0. Also,response is blank.It's showing nothing in fiddler.  

So is there any other way to send https requests?
I am sending requests mostly for java sites(which starts with https).

Kindly suggest possible solution.


Что я уже пробовал:

Я пробовал для некоторых java-сайтов, но он дает код состояния ответа как 0 и содержимое ответа как "нет".

Richard MacCutchan

Вам нужно проверить эти запросы вручную, чтобы увидеть, какой ответ вы получите. Вполне вероятно, что вам нужно будет включить информацию авторизации для HTTPS-запросов.

0 Ответов