Some additional commands doesn't exist in 11.5.75

I found below 3 commands doesn’t exist in release 11.5.75:

seetest:client.verifyElementFound
seetest:client.syncElements
seetest:client.getContextList

But they all exists in https://docs.experitest.com/display/TD/Additional+Commands. Will they are supported in next release? Thanks.

you need the SeeTest extension .jar (if using Java).

Hi wakelt,

I checked appium-seetest-extension-11.5.jar, and it doesn’t include these 4 functions. Thanks.

You are correct. Those 4 methods are not included for some reason ? You’ll need to use the driver.execute() mechanism for these methods. Looking at the appium execute() source, it seems to return a selenium Response object:

org.openqa.selenium.remote.Response;

You may be able to use this returned object to get the value you are looking for. You may want to create your own wrapper for the 4 commands (or some subset) to create a tidy solution.

Good luck…

On build 11.6.64, appium studio adds seetest:client.syncElements().

I think they will be added in consecutive versions.