当前位置:网站首页>The packet capture tool Charles modifies the Response step

The packet capture tool Charles modifies the Response step

2022-08-02 08:38:00 software testing

Table of Contents

Foreword

Modify the Response steps as follows:

Conclusion


Foreword

Charles is a commonly used tool for intercepting network packets under Mac. When testing the network communication on the server side, it is often used to intercept network packets for analysis.By setting himself as the system's network access proxy server, Charles makes all network access requests complete through it, thereby realizing the interception and analysis of network packets.

In addition to debugging ports in mobile development, Charles can also be used to analyze the communication protocols of third-party applications.With Charles' SSL function, Charles can also analyze the Https protocol.

EditResponse steps are as follows:

1. Set a breakpoint and intercept the request
2. Modify the intercepted request Response
3. Save the modified Response to the local
4. Replace the requested Response
5. Cancel the breakpoint

1Set breakpoints to intercept requests


Add and enable the request address to be intercepted in Breakpoints Setting, and check Response in the message body.

2 Modify the intercepted request Response

In the request interception interface, click Edit Response to modify it to the desired response, and then click Execute.

3Save the modified Response to the local


Find the modified interface address in the main interface of Charles, right-click and select Save Response to save the request locally.

4Replace the requested Response

Right-click and select Map Local, select the saved request from the local.

5Cancel breakpoint


After canceling the breakpoint setting, execute the interface again, and then each request Response will be obtained locally.
When no replacement is needed, just unmap.

Similarly, setting the request input parameters is similar, but it does not need to be saved locally, and executed directly after modification

The following is a very high-quality learning resource, which should be the most comprehensive and complete preparation warehouse for friends who do [software testing].This warehouse has also accompanied me through the most difficult journey, and I hope it can help you too!

You can private message me if you need the above software testing materials.Get it for free

There is also a 216-page software test engineer interview book document.And the corresponding video learning tutorials are shared for free!, which includes basic knowledge, Linux essentials, Shell, Internet program principles, Mysql database, topic of packet capture tools, interface testing tools, advanced testing-Python programming, Web automated testing, APP automated testing, interface automated testing,Test advanced continuous integration, test architecture development test framework, performance testing, security testing, etc.

Don't work alone in learning, it is better to be in a group to keep warm and grow together with mutual achievements. The effect of the mass effect is very powerful. When everyone learns and punches together, they will be more motivated to learn and more able to persevere.

Conclusion

Welcome to leave a message, or follow my column to communicate with me.

原网站

版权声明
本文为[software testing]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/214/202208020801295611.html