7. Basic use of Metasploit penetration testing framework

7. Basic use of Metasploit penetration testing framework 7.1 Metasploit testing framework 7.1.1 Introduction to Metasploit ? Metasploit is a penetration testing platform that enables you to find, exploit and verify vulnerabilities. The platform includes the Metasploit framework and its commercial counterparts such as Metasploit Pro. ? Metasploit is a free, downloadable framework that makes […]

How to use Python3+requests+unittest to implement interface automation testing practice

1. Introduction to Requests First, let’s take a look at the official introduction of Requests: Requests is an elegant and simple HTTP library for Python, built for human beings. Translated: Requests is an elegant and simple Python HTTP library written for humans. This introduction is very straightforward, let us first feel the power of Requests. […]

Build a keyword-driven automated testing framework

Preface In the last article, we have learned how the data-driven automated testing framework builds and drives tests! So in this article we will learn how keyword-driven testing drives automated testing to complete the entire testing process. Keyword-driven framework is a functional automation testing framework, which is also known as table-driven testing or action word-based […]

[Automated Testing] Web automation framework based on Selenium + Python

1. What is Selenium? Selenium is a browser-based automation tool that provides a cross-platform, cross-browser end-to-end web automation solution. Selenium mainly consists of three parts: Selenium IDE, Selenium WebDriver and Selenium Grid: ? 1. Selenium IDE: An extension of Firefox, it can record and playback, and can export the recorded operations into test cases in […]

Python+requests+pytest+excel+allure interface automated testing practice

definition: Unittest is the unit testing framework that comes with the Python standard library. Unittest is sometimes also called PyUnit. Just like JUnit is the standard unit testing framework for the Java language, Unittest is the standard unit testing framework for the Python language. Pytest is another third-party unit testing library for Python. It is […]

Python Selenium automated testing framework

Introduction With the rapid development of the Internet, software testing has become more and more important. Automated testing is one of the important means to ensure software quality and improve development efficiency. The Python Selenium automated testing framework is a popular automated testing framework that can simulate user behavior to operate on web pages and […]