7
7
import com .microsoft .playwright .options .SameSiteAttribute ;
8
8
import org .junit .jupiter .api .BeforeAll ;
9
9
import org .junit .jupiter .api .BeforeEach ;
10
- import org .junit .jupiter .api .Disabled ;
11
10
import org .junit .jupiter .api .Test ;
12
11
import org .opentest4j .AssertionFailedError ;
13
12
import testla .screenplay .actor .Actor ;
14
13
import testla .web .SelectorOptions ;
15
14
import testla .web .SelectorOptionsState ;
16
15
import testla .web .SubSelector ;
17
- import testla .web .Utils ;
18
16
import testla .web .abilities .BrowseTheWeb ;
19
17
import testla .web .actions .Add ;
20
18
import testla .web .actions .Check ;
@@ -58,13 +56,6 @@ void getPage() {
58
56
actorPage = (Page ) actor .states ("page" );
59
57
}
60
58
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
-
68
59
69
60
@ Test
70
61
void navigateTest () {
@@ -75,6 +66,7 @@ void navigateTest() {
75
66
assertThat (actorPage ).hasURL ("https://www.google.de/" );
76
67
}
77
68
69
+ // also tests placeholders
78
70
@ Test
79
71
void dragAndDropTest () {
80
72
actor .attemptsTo (
@@ -86,7 +78,8 @@ void dragAndDropTest() {
86
78
87
79
// execute the drag
88
80
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 )
90
83
);
91
84
// after Drag: Box B is on the Left
92
85
assertThat (actorPage .locator ("[id='column-a'] header" )).hasText ("B" );
0 commit comments