web automation notes 13: parameterization, skipping use cases and generating HTML test reports

catalogue Parameterization Skip use case Generate HTML test report (Master) Parameterization 1. Why parameterization Solve the problem of redundant code   2. What is parameterization Description: dynamically obtain parameters according to requirements   3. Parametric application scenario Scenario: solve the problem of the same busines ...

Posted by posidon on Tue, 22 Feb 2022 07:00:26 +0100

How to build an employee management system

Employee management system 1. Preparation Import html and front page first Establish two entity classes: Department and Employee Department: package com.dary.sweb.pojo; ​ import lombok.AllArgsConstructor; import lombok.Data; import lombok.NoArgsConstructor; ​ //Department table @Data @AllArgsConstructor @NoArgsConstructor public class Dep ...

Posted by Graeme1972 on Fri, 18 Feb 2022 18:12:59 +0100

Detailed explanation of Apache Log4j 2 Remote Code Execution Vulnerability

If you are Xiaobai, this set of information can help you become a big bull. If you have rich development experience, this set of information can help you break through the bottleneck 2022web full set of video tutorial front-end architecture H5 vue node applet Video + data + code + interview questions. On November 24, 2021, Alibaba cloud secu ...

Posted by mdnghtblue on Fri, 18 Feb 2022 04:18:32 +0100

Java Web Learning Notes

JavaWeb Basic concepts preface web development web pageStatic web html, cssThe data provided to everyone will never change Dynamic web The data provided to everyone will always change, and everyone will see different information at different times and placesTechnology stack: Servlet / JSP, ASP, PHP In Java, the technology of dyna ...

Posted by phpjaco on Thu, 17 Feb 2022 22:25:42 +0100

Web development framework - Express (installation and use, static hosting, routing processing, use of Middleware)

Express - based on node JS platform web application development framework - Express Chinese document | express Chinese networkhttps://www.expressjs.com.cn/ Express is based on Node The web development framework developed by JS is a Node JS module; Since it is based on Node JS, the premise of using express is that the computer must have installe ...

Posted by weemee500 on Tue, 15 Feb 2022 12:13:25 +0100

HTML CSS transition effect

HTML CSS transition effect 1,transition Transition: through the transition, you can specify the switching mode of the attribute of an element when it changes, so as to create some very good effects and improve the user experience. For example: transition: height 2s; /*When the height of the element changes, it takes two seconds to transition ...

Posted by saraadmin on Sat, 12 Feb 2022 07:06:16 +0100

Zhiting cloud disk - development guide web: project architecture

Here we mainly talk about the structure and technical architecture of the project, which is convenient for us to start development quickly1. Technical structure of the project• the project mainly adopts "vue + webpack + vant"• the project is mainly initialized with}vue-cli3# scaffold, and then the structure is adjusted accor ...

Posted by sqlnoob on Fri, 11 Feb 2022 21:28:22 +0100

Unexpectedly, Python can also make Web visualization pages!

When it comes to Web pages, you may first think of HTML, CSS or JavaScript. This time I'll introduce you how to make a data visualization web page with Python, using the Streamlit library. Easily convert an Excel data file into a Web page for everyone to view online.   Whenever you save changes to Excel files, Web pages can be updated in ...

Posted by kaos057 on Fri, 11 Feb 2022 20:47:55 +0100

Wargames clearance notes -- Natas

Range link: https://overthewire.org/wargames/natas/natas0.html <img src="files/pixel.png"> It shows that the web has a directory / files. After accessing the files directory, there is only pixel Png also has a text with the next level password [PARENTDIR] Parent Directory - [IMG] pixel.png 2016-12-15 16:07 303 [TXT] u ...

Posted by chadt on Thu, 10 Feb 2022 19:46:55 +0100

Ajax asynchronous operation and relevant learning of Jason

Ajax The full name of AJAX is "Asynchronous JavaScript and XML". Using Ajax, we can update the page without refresh status, and realize asynchronous submission, which improves the user experience. The essence of Ajax is to asynchronously send a request to the server by using a special object (XMLHttpRequest) provided by the brow ...

Posted by gls2ro on Thu, 10 Feb 2022 05:04:24 +0100