Skip to content

lindalumitchell/mattermost-selenium

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mattermost Selenium

Setup for Mac:

  1. Make sure you have the latest versions of Firefox and Chrome installed.
  2. Install the Selenium IDE from http://www.seleniumhq.org/
  3. Install java JDK 1.8 from http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html
  4. Set export JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.8.0_121.jdk/Contents/Home in your .bash_profile
  5. Install Maven from http://maven.apache.org/install.html
  6. Verify Maven in installed correctly with mvn -version
  7. Start a local Mattermost server
  8. Run make

Selenium IDE Setup:

Options > Options ... > Format

Select Java / JUnit 4 / WebDriver

Set the following properties

Variable for Selenium instance:

driver

Package:

com.mattermost.selenium.tests

Header:

package ${packageName};

import com.mattermost.selenium.DriverBase;

import org.junit.*;
import static org.junit.Assert.*;
import static org.hamcrest.CoreMatchers.*;

import org.openqa.selenium.*;
import org.openqa.selenium.support.ui.Select;

import org.testng.annotations.Test;

import java.util.regex.Pattern;

public class ${className} extends DriverBase {

    @Test
    public void ${methodName}() throws Exception {

Footer:

    }
}

Indent:

4 spaces

Teams and Users created by the setup script

Team Name: ui-automation

Test Account 1 (System Admin): Email: [email protected] | Password: passwd

Test Account 2 (Team Admin): Email: [email protected] | Password: passwd

Test Account 3 (Normal): Email: [email protected] | Password: passwd

Test Account 4 (Normal): Email: [email protected] | Password: passwd

Also all the accounts are set to bypass the tutorial.

Build machine

  1. Run the script setup-test-machine.sh to configure the machine
  2. Our jenkins job runs
# setup the server for the run
bash -ex ./setup-for-run.sh

export DISPLAY=:99

# run both chrome and firefox automated UI tests
make

About

Automated Selenium UI Tests

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 77.7%
  • Shell 12.7%
  • HTML 7.8%
  • Makefile 1.8%