File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
modules/web/src/main/java/com/haulmont/masquerade/components/impl Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -331,6 +331,6 @@ test {
331331
332332After that, run the following task in the terminal:
333333
334- gradle test -Dselenide.browser=marionette - Dwebdriver.gecko.driver=<your_path>/geckodriver.exe
334+ gradle test -Dwebdriver.gecko.driver=<your_path>/geckodriver.exe
335335
336336where <your_path> is the path to the gecko driver on your computer.
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ configure(project(':masquerade-web')) {
9898
9999 dependencies {
100100 compile ' com.leacox.motif:motif:0.1'
101- compile ' com.codeborne:selenide:4.9'
101+ compile ' com.codeborne:selenide:4.9.1 '
102102 compile ' org.seleniumhq.selenium:selenium-java:3.8.1'
103103
104104 testCompile ' org.codehaus.groovy:groovy-all:2.4.12'
Original file line number Diff line number Diff line change 2323import com .haulmont .masquerade .conditions .Caption ;
2424import com .haulmont .masquerade .conditions .SpecificCondition ;
2525import org .openqa .selenium .By ;
26+ import org .openqa .selenium .Keys ;
2627
2728import java .util .Objects ;
2829
@@ -65,7 +66,7 @@ public CheckBox setChecked(boolean checked) {
6566 .shouldBe (enabled );
6667
6768 if (checked != checkBoxInput .is (Condition .checked )) {
68- checkBoxInput .sendKeys (" " );
69+ checkBoxInput .sendKeys (Keys . SPACE );
6970 }
7071
7172 return this ;
You can’t perform that action at this time.
0 commit comments