Skip to main content

Getting started with Selenium on Mac

Getting Selenium working on Mac



1. Download Java - jdk from:

http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html

Fllow the instructions to install jdk.

Add jdk installed path to your environment.

On Mac -

Go to the terminal and type

nano .profile

Type the folowing into your profile:

JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.8.0_151.jdk/Contents/Homeexport JAVA_HOME

Select your Control key and o on your keyborad to write out.

Press Enter to accept the changes.

Then, Control and x to come off.

Check that jdk is installed.

Go to another terminal, type -

java -version

Something like the following should return-

 java version "1.8.0_151"Java(TM) SE Runtime Environment (build 1.8.0_151-b12)Java HotSpot(TM) 64-Bit Server VM (build 25.151-b12, mixed mode)


2. Download Eclipse IDE for jee users-

https://www.eclipse.org/downloads/packages/eclipse-ide-java-ee-developers/keplersr2

Follow the instructions to installed your system type installation.


3. Download Chrome webDriver jar -

https://sites.google.com/a/chromium.org/chromedriver/downloads


4. Download the safariDriver from -

http://www.seleniumhq.org/download/

Double click on it and click trust when safari prompt.

5.  Go to your eclipse IDE

Create a java project

And

Add the following with imports

//import org.openqa.selenium.firefox.*;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.safari.SafariDriver;
public class Testing {

public static void main(String[] args) {
//FirefoxDriver fDriver = new FirefoxDriver();
//ChromeDriver cDriver = new ChromeDriver();
WebDriver driver = new SafariDriver();                


}


}

comment out '//' and test one after the other.

There's another way to add Selenium jars to our project. This is through the use of maven.  

Comments

Popular posts from this blog

Working with Dropdownbox elements in Selenium WebDriver

How to select element from a Dropbox We are going to use Selenium webDriver and chrome driver to test this. In addition, this test was created on Mac.  I assume you have installed and setup java in your system path.  Also, install Eclipse for jee. 1. First let's take a look at a quick test case: Test case: TC_1. Register on http://automationpractice.com/index.php TC_1.1: Launch hope page -http://automationpractice.com/index.php TC_1.2 : Click on link ‘Sign in’ TC_1.3 : Under “Create Account” subheading, enter Email address in ‘Email address’ textfield TC_1.4 : Click on ‘Create an account’ button. —————————————————————————————— Test data: Email address: gorgeous12@hotmail.com http://automationpractice.com/index.php ---------------------------------------------------------------- Expected : http://automationpractice.com/index.php?controller=my-account ———————————------------ 2. Next, create a maven project in Eclipse 3....

Date Picker 2 -Calendar

Working on date picking- part 2 package com.phpTravels.PHPTravels; import org.openqa.selenium.WebDriver; import org.openqa.selenium.chrome.ChromeDriver; import org.testng.annotations.AfterClass; import org.testng.annotations.BeforeClass; public class LaunchClose { WebDriver driver ; @BeforeClass public void launchApp() { //instantiate Chrome Browser driver System.setProperty( "webdriver.chrome.driver" , "/Users/tester/Documents/webDrivers/chrome/chromedriver" ); driver = new ChromeDriver(); driver .get( "https://www.phptravels.net/" ); //boolean applaunch =driver.getCurrentUrl(); System. out .println( "browser has launched" ); } @AfterClass public void CloseApp() { driver .quit(); System. out .println( "browser has quite" ); } } Second class - package com.phpTravels.PHPTravels; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.D...

Cypress UI Automation - part 1

Java to Cypress-JavaScript Automation Migration Introduction: Across Cancer Research UK engineering department, we currently use a Java automation framework for our User interface and API testing. The framework has evolved in the last 3 to 4 years and currently, we have 19 products/project, (running approximately 1350 test scenarios) using the framework to run the respective sanity/regression packs. The project/products extend across different technology stacks such as Drupal, Symphony, React JS, .Net, OBI and Siebel CRM.   The Quality Assurance (QA) test team are currently under the process to be transformed into a fully-fledged Quality Assurance function.   As part of this transformation, we would like to have a comprehensive, automated test suite that can be maintained by developers and testers. Furthermore, our front-end web development is moving into JavaScript, now is the right time to migrate our automation framework also from java into JavaScript. The introduction ...