katalon installation, recording, executing simple Web scripts

katalon installation, recording, executing simple Web scripts _Xiaobian is not talented. The article written yesterday was not saved and lost!Rewrite one today.Don't talk too much, just get right! Catalog Download katalon Register katalon Recording scripts Edit script Run script Analysis results _This catalog is ugly, ...

Posted by henry gayman on Sun, 05 May 2019 14:56:38 -0700

Nginx automatically configures and renews SSL certificates for websites through certbot

1. Background knowledge What are 1.1, http, and https? Simply put, http is a protocol for transferring web content, such as the website you see at the beginning of http http://www.163.com , the text, pictures, CSS, JS and other files on its web page are transferred to our browser through the http protocol, and then we can see them. And HTTPS ...

Posted by Jay_Seagrave on Fri, 26 Apr 2019 11:42:35 -0700

Use JavaScript to generate posters based on user photos and names

Preface Recently, when making a special page for a competition in our company, we met the need to create a poster using photos uploaded by competitors. In the process of implementation, we used some APIs which were not used before, and also stepped on some pits, so we recorded them. Requirement description Users click on buttons to upload phot ...

Posted by Rottingham on Wed, 17 Apr 2019 04:09:33 -0700

Summary of Common Effect of Css

1. Whenever there is a big disaster, many websites become grey. How to make the websites grey quickly? CSS code is very simple, using the filter function of css. The code is as follows: html { filter: grayscale(100%);//IE browser -webkit-filter: grayscale(100%);//Chrome -moz-filter: grayscale(100%);//Firefox -ms-filter: grayscale(100 ...

Posted by imekul on Tue, 16 Apr 2019 09:30:32 -0700

Loading order of js in page and execution order of multiple jquery $(document).ready()

jQuery $(document).ready() execution order: Execute. ready() when all DOM elements of the page are loaded. Document. ready() is executed after the DOM structure has been drawn, without having to wait until the loading is complete. If there is javascript code before. ready() executes, how will javascript execute? The answer is to execute the ...

Posted by daneilair on Mon, 15 Apr 2019 14:54:32 -0700

Skills on css hack

1. What is hack technology? Because different browsers, such as Internet Explorer 6,Internet Explorer 7,Mozilla Firefox and so on, have different understanding of CSS analysis, it will lead to different page effects and not get the page effects we need. At this time, we need to write different CSS for different browsers, so that it can be co ...

Posted by Adeus on Mon, 08 Apr 2019 21:03:32 -0700

Explanation and Use of XMLHttpRequest Objects in Ajax

Ajax technology can complete partial page refresh and realize asynchronous data transmission between browser and server. The XMLHttpRequest object in JavaScript is the core object of Ajax technology, which provides the ability to send requests asynchronously. 1. Examples of XMLHttpRequest object acquisition: function getXMLHttpRequest(){ ...

Posted by myharshdesigner on Sun, 07 Apr 2019 15:54:30 -0700

Relevant Methods of JS Strings

Reprinted to: http://blog.csdn.net/liuyan19891230/article/details/50687527 1. Character Method charAt() and charCodeAt(), both methods accept a parameter and a character position based on 0. charAt() returns a character at a given location, and charCodeAt() returns a character encoding of a character at a given location. One method ...

Posted by pixelgirl on Sun, 07 Apr 2019 11:15:31 -0700

jQuery+PHP Upload Cut Pictures

Here is a simple example of jquery image preview + clipping. The principle is to get the information to be clipped at the front end, such as aspect ratio, clipping coordinates, upload the picture and then cut it in php at the back end. jquery code (must be introduced at the end) function showCutImg(showImg){ ...

Posted by acroporas on Sat, 06 Apr 2019 17:54:31 -0700

Five Ways of Implementing Footer Foot Bottom Setting in CSS

Sticky footer is to keep the footer part of the page at the bottom of the browser window. When the page content is long enough to exceed the viewing height of the browser, the footer will be pushed to the bottom of the page with the content, but if the page content is not long enough, the footer will remain at the bottom of the browser win ...

Posted by -Zeus- on Mon, 01 Apr 2019 22:09:29 -0700