Where can I find a definitive Selenium WebDriver to Firefox Compatibility Matrix? [closed]

I was looking for something similar just recently and found that the Changelog is probably the best place to look at for compatibility questions: https://github.com/SeleniumHQ/selenium/blob/master/java/CHANGELOG (used to be at http://selenium.googlecode.com/git/java/CHANGELOG when Selenium was hosted on Google Code). All the most recent version have a support up to Firefox v XX comment at the very top … Read more

Internet Explorer 11 disable “display intranet sites in compatibility view” via meta tag not working

Make sure: <meta http-equiv=”X-UA-Compatible” content=”IE=edge”> is the first <meta> tag on your page, otherwise IE may not respect it. Alternatively, the problem may be that IE is using Enterprise Mode for this website: Your question mentioned that the console shows: HTML1122: Internet Explorer is running in Enterprise Mode emulating IE8. If so you may need … Read more

OnGlobalLayoutListener: deprecation and compatibility

I’m using this in my project: @TargetApi(Build.VERSION_CODES.JELLY_BEAN) public static void removeOnGlobalLayoutListener(View v, ViewTreeObserver.OnGlobalLayoutListener listener){ if (Build.VERSION.SDK_INT < 16) { v.getViewTreeObserver().removeGlobalOnLayoutListener(listener); } else { v.getViewTreeObserver().removeOnGlobalLayoutListener(listener); } } looks similar to yours. Tested on different devices (4.2.2 & 2.3.3) and it run perfectly. seems like it’s the only way….If you find anything else I would like to … Read more

Fragments onResume from back stack

For a lack of a better solution, I got this working for me: Assume I have 1 activity (MyActivity) and few fragments that replaces each other (only one is visible at a time). In MyActivity, add this listener: getSupportFragmentManager().addOnBackStackChangedListener(getListener()); (As you can see I’m using the compatibility package). getListener implementation: private OnBackStackChangedListener getListener() { OnBackStackChangedListener … Read more

GCC ABI compatibility

Since gcc-3.4.0, the ABI is forward compatible. I.E. a library made using an older release can be linked with a newer one and it should work (the reverse doesn’t). Obviously, there could be bugs, but there is only one mentionned in the documentation: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33678

Was PreferenceFragment intentionally excluded from the compatibility package?

Discovering that PreferenceActivity contains deprecated methods (although these are used in the accompanying sample code) The deprecated methods are deprecated as of Android 3.0. They are perfectly fine on all versions of Android, but the direction is to use PreferenceFragment on Android 3.0 and higher. Can anyone tell me whether this was intentional? My guess … Read more