Filip Tuzimek

Results 23 comments of Filip Tuzimek

Hi, I suppose settling ends before sign up form is being rendered. You could try to set longer `duration` in `pumpWidgetAndSettle()` or/and use `await $(Key).waitUntilExists()` and `await $(Key).waitUntilVisible()` instead of...

Have you tried to register this device? https://developer.apple.com/help/account/register-devices/register-a-single-device/

Hi, currently we don't have any plans to implement such feature but you can try to do it on your own. [In this discussion](https://github.com/leancodepl/patrol/discussions/1460#discussioncomment-7800565) there's one of the methods to...

Hi all, Basically iOS integration with BrowserStack works. Firstly, you need to convert your scheme to use TestPlans via Xcode ([Read more here](https://developer.apple.com/documentation/xcode/organizing-tests-to-improve-feedback)). Then, inside [this thread and comment](https://github.com/leancodepl/patrol/issues/1923#issuecomment-1823547036) you...

@Dbis7 all needed info should be at iOS setup section at https://patrol.leancode.co/getting-started#integrate-with-native-side. Also, you can pass `flavor` argument to `patrol build` command.

Hi @garyb-bs, if you want to try iOS runs by yourself check out our [`bs_android`](https://github.com/leancodepl/mobile-tools/blob/master/bin/bs_android) and [`bs_ios`](https://github.com/leancodepl/mobile-tools/blob/master/bin/bs_ios) scripts. Read comments at their top to learn how to use them. If...

Related to https://github.com/leancodepl/patrol/discussions/1662

@bartekpacia ahh, the title was totally misleading. I mean that we should put links on https://patrol.leancode.co

@DmytroChuchmaiBarges I suppose you used [this doc](https://www.lambdatest.com/support/docs/getting-started-with-flutter-dart-android-automation/), it's a great mistake that it's linked in our documentation. You should use Espresso endpoints https://www.lambdatest.com/support/docs/getting-started-with-espresso-testing/

@DmytroChuchmaiBarges @iammofidul you should use `patrol build android` command. When there are **no flavors** the paths are: App: `build/app/outputs/apk/debug/app-debug.apk` Test:`build/app/outputs/apk/androidTest/debug/app-debug-androidTest.apk` With **dev** flavor: App: `build/app/outputs/apk/dev/debug/app-dev-debug.apk` Test: `build/app/outputs/apk/androidTest/dev/debug/app-dev-debug-androidTest.apk` Please let me...