摘要: package cn.java.controller; import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.RequestMapping;import org. 阅读全文
posted @ 2020-09-25 07:35 iTao0128 阅读(378) 评论(0) 推荐(0)
摘要: package cn.java.controller; /* * 单独存在,只存放Springboot的启动程序 */import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfi 阅读全文
posted @ 2020-09-25 07:20 iTao0128 阅读(296) 评论(0) 推荐(0)
摘要: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:sc 阅读全文
posted @ 2020-09-24 22:00 iTao0128 阅读(102) 评论(0) 推荐(0)
摘要: <project xmlns="http://maven.apache.org/POM/4.0.0"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/PO 阅读全文
posted @ 2020-09-24 21:30 iTao0128 阅读(144) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2020-09-23 15:05 iTao0128 阅读(34) 评论(0) 推荐(0)
摘要: 在新建springboot项目时默认使用的是start.spring.io地址,修改自定义方式,地址改为https://start.aliyun.com 阅读全文
posted @ 2020-09-22 22:43 iTao0128 阅读(419) 评论(0) 推荐(0)
摘要: 引入JavascriptExecutor依赖 <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-api</artifactId> <version>3.141.59</version> </dep 阅读全文
posted @ 2020-09-22 21:50 iTao0128 阅读(133) 评论(0) 推荐(0)
摘要: 1、在jmeter的bin文件夹下,打开jmeter.properties文件,可以使用记事本或者notepad打开 2、搜索jsyntaxtextarea.font.size,可以看到默认字体大小是14 3、修改字体大小,数字越大字体越大。建议不要直接去掉#来修改,而是在下面重新写,我这里使用的是 阅读全文
posted @ 2020-08-16 11:36 iTao0128 阅读(4272) 评论(0) 推荐(0)
摘要: 一、ID定位 一般情况下页面元素的id属性在当前网页中是唯一的所以使用ID定位可以保证定位的唯一性,不会像其他定位方式一样可能定位到多个页面元素。但有的网页页面元素没有id属性值,导致无法使用ID定位方式。 HTML 源码 <a onclick="return false;" id="lb" nam 阅读全文
posted @ 2020-07-31 20:41 iTao0128 阅读(2055) 评论(0) 推荐(0)
摘要: 1. 根据 标签定位 tagName(定位的是一组,多个元素) e.g:find_element_by_cssSelector("div") 2. 根据 id属性定位(注意id使用#表示) e.g: find_element_by_cssSelector("#eleid") e.g: find_el 阅读全文
posted @ 2020-07-31 20:39 iTao0128 阅读(2308) 评论(0) 推荐(0)