I am working on automating mobile tests. Basically I am trying to select a new date in the Android emulator using APPIUM with Eclipse (HELIOS) with JAVA. Class name for timer:
android.widget.RadialTimePickerView$RadialPickerTouchHelper
As you can, there is a dollar sign ($). If I use the following syntax.
List timeButtons = driver.findElements(By.xpath("//android.widget.RadialTimePickerView$RadialPickerTouchHelper"));
I get an error with an invalid XPATH / CSS selector.
source
share