Skip to content

Commit d04874e

Browse files
authored
Update AppiumParallelMethodTestListener.java
1 parent c795c43 commit d04874e

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

src/main/java/com/appium/manager/AppiumParallelMethodTestListener.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ private void startReportLogging(ITestResult iTestResult) throws IOException,
9393
*/
9494
@Override
9595
public void beforeInvocation(IInvokedMethod iInvokedMethod, ITestResult iTestResult) {
96-
System.out.println("inside ATD:beforeInvocation");
9796
String testMethodName = iInvokedMethod.getTestMethod().getMethodName();
9897
allocateDeviceAndStartDriver(testMethodName, iTestResult);
9998
if (!isCloudExecution()) {
@@ -123,7 +122,6 @@ public void beforeInvocation(IInvokedMethod iInvokedMethod, ITestResult iTestRes
123122

124123
private void allocateDeviceAndStartDriver(String testMethodName, ITestResult iTestResult) {
125124
try {
126-
System.out.println("inside start of ATD:allocateDeviceAndStartDriver");
127125
AppiumDriver driver = AppiumDriverManager.getDriver();
128126
if (driver == null || driver.getSessionId() == null) {
129127
deviceAllocationManager.allocateDevice(deviceAllocationManager
@@ -136,8 +134,6 @@ private void allocateDeviceAndStartDriver(String testMethodName, ITestResult iTe
136134
} catch (Exception e) {
137135
e.printStackTrace();
138136
}
139-
System.out.println("inside end of ATD:allocateDeviceAndStartDriver");
140-
141137
}
142138

143139
/*

0 commit comments

Comments
 (0)