Не проходит тест из jmix-sample-ui-test-master (masquerade, jmix 1.3.5)

Всем привет! Пытаюсь запустить тест (взят из jmix-sample-ui-test-master) на платформе jmix 1.3.5
получаю ошибку. masquerade собирал из исходников GitHub - jmix-framework/jmix-masquerade: Jmix UI Testing Library

Caused by: NoSuchElementException: no such element: Unable to locate element: {“method”:“css selector”,“selector”:"[j-test-id=‘usernameField’]"}
Element not found {By.jTestId: usernameField}
Expected: editable

код теста (взят из jmix-sample-ui-test-master)
// fluent asserts
loginScreen.getUsernameField()
.shouldBe(Conditions.EDITABLE)
.shouldBe(Conditions.ENABLED);

gradle

testImplementation 'io.jmix.masquerade:jmix-masquerade:1.1.0-SNAPSHOT'
testImplementation 'com.codeborne:selenide:6.6.1'
testImplementation 'com.leacox.motif:motif:0.1'

test {
useJUnitPlatform()

systemProperty 'selenide.baseUrl', 'http://localhost:8080'

}

Возможно, кто-нибудь сталкивался и знает, в чем дело ?

Добрый день!

А в тестируемом приложении устанавливали свойство jmix.ui.test-mode=true ?

Спасибо, работает !