Skip to main content

Posts

Showing posts from January, 2018

Error: Registry key 'Software\JavaSoft\Java Runtime Environment'\CurrentVersion'

Problem : Error : Registry key ' Software\JavaSoft\Java Runtime Environment'\CurrentVersion' has value '1.8 ' , but ' 1.7 ' is required. Error : could not find java.dll Error : Could not find Java SE Runtime Environment. Solution : open command prompt window run this below command Preview: set PATH=c:\Program Files\Java\jdk1. 6.0 _45\ bin ;%PATH% change path according to your jdk location

Jenkins step by step

JENKINS Jenkins is a powerful application that allows continuous integration and continuous delivery of projects, regardless of the platform you are working on. It is a free source that can handle any kind of build or continuous integration. You can integrate Jenkins with a number of testing and deployment technologies. In this tutorial, we would explain how you can use Jenkins to build and test your software projects continuously. Once you install Jenkins your home page will look like this. 1.  Home page jenkins 2.Click on Manage Jenkins to configure the Jenkins configuration. 3.Lets configure global configuration and path . 5. configure Global tool configuration. 6. We need to install various plugins so that our Jenkins is self capable. Go to manage plugin link for that and below window will open. this window contains all plugin installed and available you can search out the plugin you need in the search bar. ...

Points to consider for creating new tables

Below are the points which can be consider while creating new table in the database. Comments ( Always add comments to columns and tables) a.        I always find comments incredibly helpful, they could answer some of the business / content questions. b.       You can add table and column comments. c.        Add comments at the table level at the very least to indicate the contents of the table and the relationship between the two (other than simply knowing parent-> child by way of the Foreign Key). d.       Column comments are useful, as long as they do not simply restate the column name e.       There are undoubtedly some terms for which there is a Glossary of Terms etc. in which case repeating the definition given there is also of little value. f.         However if the contents may not be i...

First Selenium program using Maven+Java

This is basic example to use Webdriver, Maven with Java. We need Tools : 1. Eclipse - IDE to Build our applications Download and install   Eclipse . I choose  Eclipse IDE  you can choose IDE of you choice. 2.Maven - We need maven to get all our dependencies automatically, which also allows users to reuse same jars across multiple projects Download and install maven. Eclipse does not have integrated Maven support out of the box. To add the support, I am going to use  Maven Integration (m2e) . In Eclipse:  Help  ->  Install New Software Type the following URL in field Work with:  http://download.eclipse.org/technology/m2e/releases Click  Next  etc. to move forward and choose to restart Eclipse when prompted Steps to create program Step 1 :   First create a new Maven project.  In Eclipse: File -> New -> Other  -> Maven -> Maven project Click: Next, Next, Nex...