Part 22 | Managing Android and iOS Appium tests | How to manage Appium Tests | Effective strategy |

preview_player
Показать описание


Telegram group link : Ask your doubts directly to me

Api testing resources:

Docker playlist

Selenium Automation Framework Playlist

Extent Report 5.0.5 Playlist

SDET Package Playlist

Рекомендации по теме
Комментарии
Автор

Hi, I tried to run on your framework, and on my framework build base on your framework, But I can't user @AndroidTest, or @IosTest correct, just use default value of mobilePlatformType. I don't know. Can you help me explain this

Gtline
Автор

Hi, Please provide instructions on how to run the test cases in parallel. runs the same script on both iOS and Android

thilagaganesan
Автор

Hi Amuthan, Thank you for this great video, I tried AndroidTest annotations using testng but it is not working
import java.lang.annotation.*;
import org.testng.annotations.Test;



@Target({ElementType.TYPE, ElementType.METHOD})
@Documented
@Test(groups = "android")
public @interface AndroidTest {
public String dataProvider() default "";
}

nehalchowdekar