Dimitar Topuzov
Dimitar Topuzov
Just guesting, but it might be related two more than one python available on the machine. `six` might be available for one of them, but may be CLI check the...
Just reproduced the issue on brand new macOS High Sierra. Here is what happens: tns doctor fails because `six` is not found. This happens because `python -c "import six"` fails....
@Fatme The solution above makes doctor happy, but most likely it happens on all brand new macOS High Sierra machines. I think we should check if we still need this...
test branch_tns_core_modules#feat/uikit-for-mac
Most crashes are on GalleryApp on Android Api18 default emulator. Here is what happens after 3-4 back navigations: ``` D/dalvikvm( 1840): GC_CONCURRENT freed 3K, 14% free 7079K/8204K, paused 14ms+0ms, total...
and one more: ``` D/dalvikvm( 1961): GC_CONCURRENT freed 378K, 17% free 3893K/4664K, paused 9ms+0ms, total 12ms D/dalvikvm( 1961): GC_CONCURRENT freed 349K, 16% free 3927K/4664K, paused 6ms+0ms, total 8ms D/dalvikvm( 1961):...
Most of the failures are after 8th Feb 2016.
This issue happens only on Api18 x86 emulators, can not reproduce on Api18 Arm devices and emulators. I'm not sure if there is a real device with Api18 and x86...
I can confirm the same for @AndroidFindBy too. 7.2.0: - `@AndroidFindBy(accessibility = "email")` do the same as driver.findElement(MobileBy.AccessibilityId("email")) 7.3.0: - `@AndroidFindBy(accessibility = "email")` do the same as driver.findElement(By.id("email"))
**Updates:** When use ``` capabilities.setCapability(MobileCapabilityType.PLATFORM_NAME, org.openqa.selenium.Platform.ANDROID); ```` I hit the issue/ When use ``` capabilities.setCapability(MobileCapabilityType.PLATFORM_NAME, org.openqa.selenium.Platform.ANDROID.toString()); ```` It works properly even with 7.3.0 May is happens because this check looks...