All Downloads are FREE. Search and download functionalities are using the official Maven repository.

bichromate.tools.sTestLicenseFactoryPanel Maven / Gradle / Ivy

Go to download

Java, Selenium, Appium, Winium, Extend, and TestNG automated testing framework. Bichromate integrates the best of these frameworks and takes automation to the next level. With Bichromate there is one function call that builds any type of Web,IOS Mobile, Android, and Windows App driver on any platform (Windows, Mac, Linux). From Local web drivers, to SauceLabs, Browserstack, and Selenium grid. Build data driven tests is never easier. Bichromate also gives you built in Factories that, access DBs, Video Capture, FTP, POM Generation, Hilite element.

There is a newer version: 3.13
Show newest version
package bichromate.tools;

import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;

import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JPanel;


import bichromate.core.sTestOSInformationFactory;

@SuppressWarnings("unused")
public class sTestLicenseFactoryPanel  extends JPanel implements ActionListener,KeyListener {

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;
	private sTestSplashScreen splash = null;
	
	private KeyVerifier keyVerification = null;
	private KeyGenerator keyGen = null;
	
	public sTestLicenseFactoryPanel(){
		
		
		splash = new sTestSplashScreen("Splash.png","Creating License Factory");
		if(null != splash)
			splash.showSplash();
		
		
		keyVerification = new KeyVerifier();
		keyGen = new KeyGenerator();
	
		setLayout( new GridLayout(2 /* rows */, 1/* cols */) );
		
		
		
		if(null != splash)
			splash.hideSplash();
		
	}//sTestLicenseFactoryPanel
	
	public void keyTyped(KeyEvent e) {
		// TODO Auto-generated method stub
		
	}

	public void keyPressed(KeyEvent e) {
		// TODO Auto-generated method stub
		
	}

	public void keyReleased(KeyEvent e) {
		// TODO Auto-generated method stub
		
	}

	public void actionPerformed(ActionEvent e) {
		// TODO Auto-generated method stub
		
	}
	
	 //
	// Inner class for testing on the command line
	//
	public static class Test
	{
		public static void main(final String[] args){
			
			sTestOSInformationFactory path = new sTestOSInformationFactory();
			sTestLicenseFactoryPanel pom = null;
			
			pom = new sTestLicenseFactoryPanel();
			if(pom != null){
				
				JFrame frame = new JFrame();
				
				ImageIcon img = new ImageIcon(path.getImageDirectory()+"bichromateIcon.png");
				
				if(null != img)
					frame.setIconImage(img.getImage());
				
		        frame.add(pom);
		        frame.setBounds(10, 10, 1200, 500);
		       
		        frame.setVisible(true);
				
			}
			
		} // end Main
	 } // end Inner class Test

		
}//sTestLicenseFactoryPanel




© 2015 - 2024 Weber Informatics LLC | Privacy Policy