Page does not render completely and keeps on flickering through appium but renders correctly when done manually

I have a test case scenario to add medicine to cart as below: 1. send medicine name in textbox 2. from the search results select the medcine by clicking ADD button 3. verify addd medicine Issue: When i click on add button in step 2, the medicine gets added but the page starts to flicker i.e. page keeps on rendering or refreshing(dont know what to call in exactly) and so i am not able to perform next steps.

One more concern is that the same scenario works perfectly when executed manually. The issue occurs only for execution done via appium. If i stop the appium server at the point where issue occurs,the flickering stops. So seems to me like appium is messing something up.

My android app is react native app.

At the point of failure i can see below failure in adb logs: Conv2QueryExtension: Conv2Query not enabled due to current app [com.medlife.customer] not in whitelist

ADB logs:

09-19 15:20:05.274 2132 2132 I LatinIme: onActivate() : EditorInfo = Package = com.medlife.customer : Type = Text : Learning = Disable : Suggestion = Hide : AutoCorrection = Disable : Microphone = Show : Incognito = Disable 09-19 15:20:05.690 2132 2132 W Conv2QueryExtension: Conv2Query not enabled due to current app [com.medlife.customer] not in whitelist 09-19 15:20:10.719 2132 2132 I LatinIme: onActivate() : EditorInfo = Package = com.medlife.customer : Type = Text : Learning = Disable : Suggestion = Hide : AutoCorrection = Disable : Microphone = Show : Incognito = Disable 09-19 15:20:10.770 15240 15240 I chatty : uid=10105(com.medlife.customer) expire 5 lines 09-19 15:20:10.784 2132 2132 W Conv2QueryExtension: Conv2Query not enabled due to current app [com.medlife.customer] not in whitelist 09-19 15:20:10.809 2132 2132 I LatinIme: onActivate() : EditorInfo = Package = com.medlife.customer : Type = Text : Learning = Disable : Suggestion = Hide : AutoCorrection = Disable : Microphone = Show : Incognito = Disable 09-19 15:20:10.916 2132 2132 W Conv2QueryExtension: Conv2Query not enabled due to current app [com.medlife.customer] not in whitelist

it is issue in your test app… see similar -> https://github.com/mozilla-mobile/android-components/issues/1627

and solutions for fix: https://stackoverflow.com/questions/45940861/android-8-cleartext-http-traffic-not-permitted/50834600#50834600

hi @Aleksei

Thanks for the reply.
However the solutions mentioned in the stackOverFlow link are already in place, still i face the mentioned issues.
Please let me know if there can be any other possibilities?By any chance can this be a issue of appium?because manually the scenario works fine