Skip to content

Commit 64c0d35

Browse files
authoredDec 9, 2022
Merge pull request #4 from testla-project/bugfix/utils_nullcheck
Bugfix/utils nullcheck
2 parents 10b2979 + fa2e511 commit 64c0d35

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed
 

‎src/main/java/testla/web/Utils.java

+9-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ private Locator getLocatorFromLocator(Locator locator, String selector, @Nullabl
4444
}
4545

4646
/**
47-
* Wait until the given locator has the given state. default state is visible if no state is specified. timeout optional.
47+
* Wait until the given locator has the given state. Default state is visible if no state is specified. Timeout optional.
4848
*
4949
* @param locator - the locator
5050
* @param timeout - timeout can be null
@@ -65,6 +65,14 @@ private void waitForLocator(Locator locator, @Nullable Double timeout, @Nullable
6565
* @return Locator - the locator found on the page
6666
*/
6767
public Locator recursiveLocatorLookup(Page page, String selector, SelectorOptions options) {
68+
// double check if this method was somehow called with options == null.
69+
// if this is really the case, just resolve the locator, wait for it to be visible and return it.
70+
if (options == null) {
71+
Locator locator = getPageLocator(page, selector, null);
72+
waitForLocator(locator, null, null);
73+
return locator;
74+
}
75+
6876
// replace selector placeholders if present.
6977
if (options.replacements != null) {
7078
selector = replacePlaceholders(selector, options.replacements);

‎src/test/java/WebTest.java

+3-10
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,12 @@
77
import com.microsoft.playwright.options.SameSiteAttribute;
88
import org.junit.jupiter.api.BeforeAll;
99
import org.junit.jupiter.api.BeforeEach;
10-
import org.junit.jupiter.api.Disabled;
1110
import org.junit.jupiter.api.Test;
1211
import org.opentest4j.AssertionFailedError;
1312
import testla.screenplay.actor.Actor;
1413
import testla.web.SelectorOptions;
1514
import testla.web.SelectorOptionsState;
1615
import testla.web.SubSelector;
17-
import testla.web.Utils;
1816
import testla.web.abilities.BrowseTheWeb;
1917
import testla.web.actions.Add;
2018
import testla.web.actions.Check;
@@ -58,13 +56,6 @@ void getPage() {
5856
actorPage = (Page) actor.states("page");
5957
}
6058

61-
// @Test // will fail
62-
@Disabled
63-
void placeholderTest() {
64-
Utils utils = new Utils();
65-
utils.recursiveLocatorLookup(null, "id=[%s]", new SelectorOptions().setReplacements("title"));
66-
}
67-
6859

6960
@Test
7061
void navigateTest() {
@@ -75,6 +66,7 @@ void navigateTest() {
7566
assertThat(actorPage).hasURL("https://www.google.de/");
7667
}
7768

69+
// also tests placeholders
7870
@Test
7971
void dragAndDropTest() {
8072
actor.attemptsTo(
@@ -86,7 +78,8 @@ void dragAndDropTest() {
8678

8779
// execute the drag
8880
actor.attemptsTo(
89-
DragAndDrop.execute("[id='column-a']", "[id='column-b']")
81+
DragAndDrop.execute("[id='column-%s']", "[id='column-b']",
82+
new SelectorOptions().setReplacements("a"), null)
9083
);
9184
// after Drag: Box B is on the Left
9285
assertThat(actorPage.locator("[id='column-a'] header")).hasText("B");

0 commit comments

Comments
 (0)
Please sign in to comment.