Xamarin.Uitest app.Tap() has a different behavior between 2 different phones (Android) - automation

I have an issue.
With the same code, app.Tap(myquery) work on LG 6.0.1, and it does not work on HTC 6.0.
(The issue happend with pop-ups)
I made an app.Flash(myquery) to make sure that my button can be found, and the app.Flash(myquery) is working fine for both phones.
Thank you.

Related

Workaround for css animations if windows user not enabling animations

I just noticed that no animations from example animated.css is working if the user is using win 10. This is because of that animations is disabled by default in win 10. So I dont think it has anything to do with browser support.
I think this is a problem because the average user dont know about this setting and all animations is lost for them.
Everything works fine on mac and chrome/safari and on iphone. Also tried and huawei tablet and it worked there to.
I also read this: https://developer.mozilla.org/en-US/docs/Web/CSS/#media/prefers-reduced-motion
Anyone has a solution to this?
Thanks

Android Emulator is not working properly. The screen goes blur sometimes. Why?

Android emulator has not been working properly for the past 1 month. Can someone please suggest what might be the issue. It works for some time and again becomes as shown above. Even sometimes gets stuck.
I believe thats not a problem of react native here, try reporting this to google team.
ALso you can check by. creating a kotlin starter project, which will be available by clicking new android project in andorid studio and try checking there if the problem persist, if its still there, report the isseu with google team.

Worklight persistent busy indicator

I'm working on a project using IBM Worklight and any time I build and deploy my project on any simulator or device, I have this busy indicator spinner in the middle of the screen. Its always there, on every page and its there in the ios, windows, web and android simulators as well as one android device we've tested on. Has anyone seen this before and if so how would I get rid of it.
Jquery-mobile was the problem, it was continuously displaying the indicator for seemingly no good reason. Deleting Jquery mobile fixed the problem
I already used the native worklight loading.It is very good and I tested it on different platforms, devices. But it is necessary to close it when you leave the function that opened it.
Example:
var busyInd = new WL.BusyIndicator ("content", {text: "Please wait..."});
function consult(){
busyInd.show();
//impl
busyInd.hide();
}

hd images not working

In simulation and on device, there is something that happen with my cocos2d which its strange.
I have xcode 4.2, running on simulation ios5 and have cocos2d v1.0.1 .
The app is working great, when all images in HD mode(double size),but without the -hd
Then when i have tried to change all images from image.png to image-hd.png, he cant find the image anymore.
I have to say that after i added the -hd ,and before i have cleaned the cache it worked.
After the cache was clean, it stopped.
The HD is enabled in my delegate, and it worked in the past as well.
he somehow cant except anymore the HD images.
any idea ??
thanks.
This was something that drove me crazy when I updated to v1.0.1. I spent hours trying to understand why it would work sometimes and not other times between projects. Basically all you need to do is make sure that you include the different images named properly in your project. You can't have just the image-hd.png in your project alone or it will fail. You have to include both the image.png and the image-hd.png in your project or it will error as you described. Once you have both or if you're doing both iPhone and iPad, include all 4 types. (image.png, image-hd.png, image-ipad.png, and image-ipadhd.png)
Then in your code only reference the image.png and v1.0.1 will do the rest.

How to let my application support iOS 4?

I tested my application on 8GB iPod Touch using iOS 4.0(within multitask), it works. But when I change my original source code, and built it in the simulator. The application load, but nothing appear, it all dark. What I should do to solve the problem? I check the console, it didn't show any error msg. Thank u.
In the Simulator, check the Hardware->Device and Hardware->Version settings. Also, try setting a breakpoint in your code and stepping through it to see how far it gets.