Adrian Hertel
Adrian Hertel
@lxnxrd22 That error means that the Safari window used by the tool was closed. When the script starts running it opens a window and then minimizes. That window **must** stay...
@lxnxrd22 thanks for letting me know it worked for you! Great to hear!!
> @lxnxrd22 That error means that the Safari window used by the tool was closed. When the script starts running it opens a window and then minimizes. That window **must**...
@tatianajiselle the neighboring "empty" tab in the window used by the script **must** remain open. Please don't close it :) The script opens and closes the amazon webpage tab, which...
```java private static final String[] TREATMENTS = {"1", "2"}; @ParameterizedTest @ValueSource(strings = TREATMENTS) public void test(String treatment) {} ``` This gives a "Attribute value must be constant" error. ![Screen Shot...
@sbrannen thanks Sam. I discovered that this also works :) ```java private static final String T1 = "T1"; private static final String T2 = "T2"; @ParameterizedTest @ValueSource(strings = {T1, T2})...