Skip to content

Commit 8d7580f

Browse files
开始
1 parent 75edfc0 commit 8d7580f

File tree

12 files changed

+49
-141
lines changed

12 files changed

+49
-141
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
test/
22
.vscode/
33
.idea
4-
geckodriver.log
4+
geckodriver.log
5+
*.iml
6+
target

README.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

docs/find_net.png

-1.54 MB
Binary file not shown.

docs/index.html

Lines changed: 0 additions & 2 deletions
This file was deleted.

docs/安装selenium的chrome插件.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

findsth.py

Lines changed: 0 additions & 56 deletions
This file was deleted.

findsth_open_in_broswer.py

Lines changed: 0 additions & 17 deletions
This file was deleted.

playground/pom.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>com.yitianyigexiangfa.findsth</groupId>
8+
<artifactId>findsth-playground</artifactId>
9+
<version>0.1</version>
10+
11+
</project>
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
package com.yitianyigexiangfa.playground.findsth;
2+
3+
/**
4+
* @author Bill Lau
5+
* @date 2019-08-01
6+
*/
7+
public class Application {
8+
}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
package com.yitianyigexiangfa.playground.findsth.thread;
2+
3+
/**
4+
* @author Bill Lau
5+
* @date 2019-08-01
6+
*/
7+
public class FirstThread extends Thread {
8+
9+
@Override
10+
public void run() {
11+
System.out.println("Hello, thread!!!");
12+
}
13+
14+
15+
}

0 commit comments

Comments
 (0)