Skip to content

Commit

Permalink
fix(Internal): 馃悰 fixed compilation error in sample test (#224)
Browse files Browse the repository at this point in the history
  • Loading branch information
WasiqB committed Oct 16, 2022
1 parent 0cb2a15 commit a492e4a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sample-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<maven.source.encoding>UTF-8</maven.source.encoding>
<suite-xml>test-suites/testng.xml</suite-xml>
<argLine>-Dfile.encoding=UTF-8 -Xdebug -Xnoagent</argLine>
<boyka.version>0.8.2-rc.0</boyka.version>
<boyka.version>0.9.0</boyka.version>
<testng.version>7.6.1</testng.version>
<lombok.version>1.18.24</lombok.version>
<java.faker.version>1.0.2</java.faker.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
import static com.github.wasiqb.boyka.ui.actions.OrderSuccessPageActions.orderSuccessPageActions;

import com.github.wasiqb.boyka.enums.ApplicationType;
import com.github.wasiqb.boyka.enums.PlatformType;
import com.github.wasiqb.boyka.ui.data.BillingData;
import com.github.wasiqb.boyka.ui.data.TestDataBuilder;
import org.testng.annotations.AfterClass;
Expand All @@ -47,7 +48,7 @@ public class EcommerceEndToEndTests {
@Parameters ({ "driverKey" })
public void setupTestClass (final String driverKey) {
final String url = "https://ecommerce-playground.lambdatest.io/";
createDriver (ApplicationType.WEB, driverKey);
createDriver (PlatformType.WEB, driverKey);
this.billingData = TestDataBuilder.getBillingData ();
navigateTo (url);
}
Expand Down

0 comments on commit a492e4a

Please sign in to comment.