Skip to content
This repository has been archived by the owner on Feb 28, 2022. It is now read-only.
mwobensmith edited this page Jun 11, 2019 · 13 revisions

System requirements

  • Supports Mac, Windows 7/10 (Professional) and Ubuntu Linux 16.04.
    • All others are untested, and while they may work, they are not currently supported.
  • All instructions assume that Git is already installed.
  • Recommended minimum supported screen resolution is 1920 x 1080 for Windows and Linux, default for display (2880 x 1800 for retina Mac and 1440 x 900 for non-retina Mac)
  • Important: when running Iris, make sure that you have saved any work that you have open. When Iris is running, it commands all user input, and can interfere with any document or interface that matches a given test.

Mac instructions:

  1. Clone the Iris repo.
cd ~
git clone https://github.com/mozilla/iris
  1. Run the Mac bootstrap script.
cd iris
./bootstrap/bootstrap.sh
  1. Restart your Mac in order for certain libraries to be recognized.
  2. In System Preferences, go to Mission Control and change the keyboard shortcut for "Application Windows" to "-", or none.
  3. Launch Iris.
cd ~/iris
pipenv install
pipenv shell
iris -k

NOTE: If your test just starts the Firefox instance and then nothing happens, please have a look in Security Preferences > Security & Privacy > Privacy > Accessibility - you might have to allow your terminal application in the list.


Windows 7 / Windows 10 Professional instructions:

Note:
Windows 7 requires Powershell 5 and the latest .NET framework version 4.5. In addition, please make sure you are using the default theme for the operating system, and not a custom theme such as "Aero," as this is not supported.

  1. Launch the terminal.
  2. Run the following commands. Note: The script will prompt you to restart the terminal twice.
git clone https://github.com/mozilla/iris
cd iris
bootstrap\bootstrap.sh
  1. Install project requirements and activate the virtualenv.
pipenv install
pipenv shell
  1. Run Iris.
iris -k

Ubuntu Linux instructions:

  1. Follow instructions below for disabling Keyring.
  2. Open Settings > Displays > "Scale for Menu and Title bars:" and verify that it is set to 1.
  3. Launch the terminal and run the following commands.
cd ~
git clone https://github.com/mozilla/iris
cd iris
./bootstrap/bootstrap.sh

Note: This will take around 10 minutes to download, compile, and install dependencies.

  1. Run the following commands to complete installation and launch Iris.
pipenv install
pipenv shell
iris -k

Optional: Install Sikuli

If you have never used Sikuli, it is highly encouraged to visit their site, download their tools, and experiment, as the concepts that Sikuli uses have greatly inspired Iris and will help in learning.


Optional: PyCharm IDE

You can use any IDE that you are comfortable with, but we recommend PyCharm.


Disable System Keyring (Linux)

Some tests covering the save credentials functionality may prompt to enter Keyring password. keyring linux

In order to avoid this dialog in test runs. You must switch Keyring password off manually with your user password.

To do this follow:

  1. On the Password and Keys panel, right-click on the "Default keyring," and choose "Change Password." linux keyring

  2. Leave new password blank.

From now on, you won't be prompted to unlock the default keyring.

Home

FAQ

Installation

Running Iris

Contributing to Iris

Clone this wiki locally