Sergey Gavrilyuk

Results 10 comments of Sergey Gavrilyuk

As described in the original issue, it actually doesn't translate directly to `UiSelector` calls. This is the piece of code which handles class_regex selectors https://github.com/appium/appium-uiautomator2-server/blob/master/app/src/main/java/io/appium/uiautomator2/utils/ByUiAutomatorFinder.java#L101-L123 As described in the original...

[Qwyrk](http://www.qwyrk.com/) iOS app is built on RAC. Android version is partially using RxJava (moving to RxJava in future).

I did a little bit of digging, at appears that `KqueueSelector.select(timeout:)` hangs in some cases, it hangs on calling `kevent()` with `nil` timeout, which means it should wait indefinitely for...

Thank you for looking into this! This is actually a transient dependency of the other dependency we use in RN environment. I'll patch that dependency and use a local podspec...

Was seeing this too in RN 0.68.2 Which I believe was fixed in https://github.com/facebook/react-native/pull/33983 and is not reproducible in 0.68.9 anymore. The issue I believe is in difference of "now"...

Native launch indeed reporting very high numbers which likely the result of iOS [pre-warming](https://developer.apple.com/documentation/uikit/app_and_environment/responding_to_the_launch_of_your_app/about_the_app_launch_sequence?language=objc#3894431). On iOS we can no longer assume that process creation time is the time when user...

There are use cases where wrapper-based APIs simply cannot be used no matter what. React component life cycle is a good example. For context: react component is described by a...

I'd have to flesh out some implementation details then. Here's how I envision this to work. ``` function Component() { /* `componentRenderSpan` is created only once, hence useMemo Upon creation...

> To me this sounds a bit like the react framework (or some react instrumentation) should take care of context activation/deactivation instead for components and potentially even create spans for...

So we back to square one. Does this mean oTel is by design limited and by design can not be used to instrument react render process in client applications?