A collection of simple demos of web auto drivers. These demos can help you run drivers quickly. Then, you can do more based on them.
This is a example based on node.
The example requires a Node library puppeteer, which provides a high-level API to control Chrome or Chromium .
# clone the project
git clone https://github.com/SamenYan/webdriver-demos.git
# enter the project directory
cd Node
# install dependency
npm install
# run demo application
npm run start
A Java automation application based on SpringBoot, Selenium .
# clone the project
git clone https://github.com/SamenYan/webdriver-demos.git
# Import Project in IDEA or Eclipse
# project directory
cd Java/demo
selenium :
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<version>2.44.0</version>
</dependency>