Skip to content

Releases: Frameworkium/frameworkium-core

Latest Stable

04 Apr 11:31
Compare
Choose a tag to compare

Now contains @invisible feature for pages, where we'll wait for that element NOT to be present before proceeding.

Useful for when there are loading boxes, spinning jinnies, grey-out masks etc present while something on the page loads.

Latest Stable

10 Mar 15:57
Compare
Choose a tag to compare

Updated dependencies which resolve angular issues.

Latest Stable

15 Jan 16:00
Compare
Choose a tag to compare
  • Added the ability to pass through FF profiles as files with -DfirefoxProfile for example:
mvn clean install -DfirefoxProfile="D:\FirefoxProfile"
  • Updated dependencies throughout the POM

Latest Stable

12 Jan 11:16
Compare
Choose a tag to compare

Added the ability to use custom Firefox profiles. These are passed in through maven parameters, for example:

mvn clean install -DfirefoxProfile=selenium

Latest Stable

04 Dec 12:11
Compare
Choose a tag to compare

Inline steps are now possible, and start with a double underscore!
In a test, you can now do:

__stepStart("Log into Application");
LoginPage loginPage = LoginPage.open()
loginPage.enterUsername("user");
loginPage.enterPassword("password");
HomePage homepage = loginPage.clickLoginButton();
__stepFinish();

This will result in nested steps appearing in your allure report

Latest Stable

04 Dec 01:36
Compare
Choose a tag to compare

ZAPI bug fixed (issue #27)
Simple error in the json - likely to have been there since initial commit!
mvn clean verify -DjiraURL=http://your_jira_url -DjiraUsername=your_username -DjiraPassword=your_password -DresultVersion=the_result_in_zephyr_to_log_against

Inline steps are now possible
In a test, you can now do:

stepStart("Log into Application");

LoginPage loginPage = LoginPage.open()
loginPage.enterUsername("user");
loginPage.enterPassword("password");
HomePage homepage = loginPage.clickLoginButton();

stepFinish();

This will result in nested steps appearing in your allure report

Latest Stable

03 Dec 12:39
Compare
Choose a tag to compare

Resolved zapi logging issue (Issue #27)

Electron Temp

17 Nov 11:33
Compare
Choose a tag to compare
Electron Temp Pre-release
Pre-release
Added correct imports to electron

Updated the electron driver so that it has the right imports

Electron Support + Bug Fixes

12 Nov 16:50
Compare
Choose a tag to compare
  • Added native electron application support
  • Fixed the issue where @testcaseid wasn't been used for Allure reports
  • Sources are now attached to the jar to aid debugging
  • Dependencies have been updated to their latest versions
  • Updated to use Java 8

Latest Stable

11 Sep 11:58
Compare
Choose a tag to compare

This resolves Issue #21 - you can now run using the -Dgroups=blah params again.