-
-
Notifications
You must be signed in to change notification settings - Fork 130
update required an optional parameters for getting performance #103
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm for this. The unit test for protocol consistency needs to be updated though. https://github.com/appium/appium-base-driver/blob/master/test/mjsonwp/routes-specs.js#L41
I updated the hash in 2484263 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @KazuCocoa!
@imurchie technically this is a breaking change to the protocol. do you know of any other clients that would stop working because of this change? wanting to know what semver update to publish as. |
@jlipps I'm not aware of any other clients actually implementing this. |
I also not sure any clients implementing this.
Java client and ruby client are just trying to implement this feature. In
addition, each client will work fine with this PR, not current API.
…On Thu, Feb 2, 29 Heisei at 10:00 PM, Isaac A. Murchie < ***@***.***> wrote:
@jlipps <https://github.com/jlipps> I'm not aware of any other clients
actually implementing this.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#103 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AFQZpzWK2PkNFyn0rUucr0bs_O9OvS6mks5rYdNggaJpZM4LzUrv>
.
|
Well let's merge it then as soon as @imurchie approves! |
Approved! |
great, published as |
To get performance data via appium/java-client#562 , this driver should apply parameters
packageName
,dataType
anddataReadTimeout
, notapplicationPackageName
andperformanceDataType
, I think.The following log is sending parameters with
packageName
,dataType
anddataReadTimeout
. If I sent parameters withapplicationPackageName
andperformanceDataType
, then Appium return{}
as the result.What do you think? @heeseon
I also try to implement in ruby_lib