openfin / hello-openfin-selenium-java-example

Example of Java test code with Chrome Driver on OpenFin Runtime
MIT License
5 stars 5 forks source link

Hello OpenFin Selenium Java Example

Overview

Example of Java test code on OpenFin Runtime with Chrome Driver.

Source Code

HelloOpenFinTest.java has sample code for testing HTML5 components and OpenFin javascript adapter in Hello OpenFin demo application.

Guidelines

Since all HTML5 applications in the OpenFin environment need to be started with OpenFin API, chromeDriver.get(URL) is not supported.

ChromeDriver, by default, starts Chrome browser with various Chrome arguments, including remote debugging port, before running tests. ChromeOptions.setBinary needs to be called so ChromeDriver can start OpenFin Runtime properly. RunOpenFin.bat is an example batch file that can be set as 'binary'.

Given there can be multiple applications/windows active in OpenFin Runtime, tests must begin by selecting the targeted window. Each test script has a function that selects the window by matching it's title.

Since the OpenFin Runtime is started by OpenFinRVM, Chromedriver does not have direct control of the OpenFin Runtime. Chromedriver must be started before any test runs. Once a test is complete, it needs to shut down OpenFin Runtime by running javascript code "fin.desktop.System.exit();". driver.quit() does not shut down OpenFin Runtime since it does not have access. Moving forward, we will improve how Chromedriver controls OpenFin Runtime in the future release.

In Summary

Launch

Run Locally

All binaries required to run HelloOpenFinTest are in release directory:

  1. Install Hello OpenFin App
  2. start chromedriver.exe
  3. run testHelloOpenFin.bat

Building from Source

To build one jar that includes all dependencies, use the command mvn assembly:assembly -DdescriptorId=jar-with-dependencies

Instructions for Selenium Server

Two example scripts are included in this project to demonstrate use of Selenium Server on localhost.

  1. seleniumHub.bat/sh for launching Selenium Grid hub.
  2. seleniumNode.bat for launching Selenium Grid node.
  3. set RemoteDriverURL=http://localhost:8818/wd/hub

Disclaimers

License

MIT

The code in this repository is covered by the included license.

However, if you run this code, it may call on the OpenFin RVM or OpenFin Runtime, which are covered by OpenFin’s Developer, Community, and Enterprise licenses. You can learn more about OpenFin licensing at the links listed below or just email us at support@openfin.co with questions.

https://openfin.co/developer-agreement/
https://openfin.co/licensing/

Support

Please enter an issue in the repo for any questions or problems.
Alternatively, please contact us at support@openfin.co