Selenium v1 means use java package com.thoughtworks.selenium to call/test csv, run Selenium, Selenium v3 means use java package org.seleniumhq.selenium, support Remote Selenium WebDriver Later will explain how to difference for starting. These 2 different selenium versions also support different browser versions, e.g. Firefox Tested in selenium v1 on FFv3, and selenium v2 on FFv63 Here will […]
Read MoreDevOps : Build your docker repository for example
1. Install docker on Ubuntu Please refer to https://linuxconfig.org/how-to-install-docker-on-ubuntu-18-04-bionic-beaver 2. Check and Download JavaSimpleProject.zip include dockerfile and java code Zip file includes: src/main maven project folder Dockerfile for docker build including maven,tomcat installation pom.xml for maven build start.sh start tomcat to run java application Note, in Dockerfile, you can change FROM ubuntu:latest into FROM ubuntu:18.04 3. Change to your […]
Read MoreDevOps : Linux commands with scenarios
DevOps Linux commands # Sometimes only access linux system using terminal, and need to check which linux version is, lsb_release -a # Open terminal and run one application/scripts with long console output, and try to search some keyword text in GUI,not impacted by previous command output, avoid to re-open new terminal to re-run, so […]
Read MoreDevOps Git Operations: create new branch and merge to remote
DevOps Git to manage branch This is supposed as development/test operations. For a research team, suppose to make a new branch to test/development, but not master branch instead, create and merge for steps below: # clone remote git branch git clone –single-branch -b remote-branch-name https://github…/remote.git #check current branch if remote-branch-name git branch #create new branch […]
Read MoreImport VirtualBox vmdk file into VMWare Fusion On Mac Guide
If you have virtualbox vmdk file, and want to import into vmware fusion, here are some steps. Skip to say how to install virtualbox and vmware fustion. The virtualbox vm status should be power off, then check and record vm gerneral settings: CPU,Memory,Network Adapters etc. Open VMWare Fustion(v10.1.3) Click + New… See picture below Then […]
Read More