SeleniumHQ / selenium-google-code-issue-archive

Archive, please see main selenium repo
https://github.com/seleniumhq/selenium
345 stars 195 forks source link

Actions class doesnot work in Android WebDriver. #4207

Closed lukeis closed 8 years ago

lukeis commented 8 years ago

Originally reported on Google Code with ID 4207


What steps will reproduce the problem?
 Actions builder = new Actions(driver); 
       builder = builder.sendKeys(Keys.chord(Keys.CONTROL,"a")); 
         Action selectMultiple = builder.build(); 
           selectMultiple.perform(); 

or
Actions builder = new Actions(driver); 
 builder.sendKeys(Keys.chord(Keys.CONTROL,"a")).build().perform(); 

Actual Result:-
org.openqa.selenium.WebDriverException: Underlying driver does not implement advanced
user interactions yet.

Expected Result:-
It should be able to select all the text or the various methods associated with Actions
class should work.

Selenium version:2.24.1
OS:Android 4.1 

Reported by mahajansahil12 on 2012-07-07 08:46:03


lukeis commented 8 years ago

Reported by barancev on 2012-07-16 14:06:33

lukeis commented 8 years ago
Does anyone find a solution for simulating advanced user interactions on Android Driver?
(using C# or any other language)

Reported by szep.laszlo.zoltan on 2013-09-06 09:37:24

lukeis commented 8 years ago
Selenium project no longer supports the AndroidDriver.

Please use Selendroid instead:
http://selendroid.io/webview.html

And log any issues against that project:
https://github.com/selendroid/selendroid/issues

Reported by luke.semerau on 2013-12-26 21:57:35

lukeis commented 8 years ago

Reported by luke.semerau on 2015-09-17 18:15:46