0

How to configure Proxies in Locust for FastHTTPUser Approach. It is working fine for HTTPUser approach as given below but same is not working for FastHTTPUser approach.

proxies = {
          "http": "my.company.cmm:80",
          "https": "my.company.com:443",
    }
    
self.get.client(url, proxies=proxies)

How to verify the same proxy approach in FastHTTPUser

vnbal
  • 41
  • 3

1 Answers1

0

Sorry. Proxies are not supported by FastHTTPUser client among other features available only in the HTTPUser that it's requests based

aekis.dev
  • 2,626
  • 1
  • 12
  • 19