• scrollTo(String text) and scrollToExact(String text) method of Android Driver not working


    Using the scrollTo(String text) and scrollToExact(String text) method of Android Driver. However the scrolling is done for the entire contact list first downwards and then upwards but it does not scroll upto the string text provided and in the end throws error- org.openqa.selenium.NoSuchElementException: An element could not be located on the page using the given search parameters.

    public class test2 {
    
    //public WebDriver driver;
    public AppiumDriver driver1;
    
     @BeforeClass
     public void setUp() throws MalformedURLException{
    
    //Set up desired capabilities and pass the Android app-activity and app-package to Appium
    
     DesiredCapabilities capabilities = new DesiredCapabilities();
        capabilities.setCapability("platformName", "Android");
        capabilities.setCapability("platformVersion", "5.0
        capabilities.setCapability(CapabilityType.BROWSER_NAME, "");
        capabilities.setCapability("deviceName", "4763f751");
        capabilities.setCapability("device", "Android");
        capabilities.setCapability("appPackage", "com.android.contacts");             
        capabilities.setCapability("appActivity", "com.android.contacts.activities.PeopleActivity");
    
      //Create RemoteWebDriver instance and connect to the Appium server.
        driver1 = new AndroidDriver (new URL("http://127.0.0.1:4723/wd/hub"), capabilities);    
    
     }
    
     @Test
    public void testCal()  throws Exception {
    
        WebElement clk=driver1.findElement(By.name("some contact name here"));      
        String txt= clk.getText();
         driver1.scrollTo(txt);
    
     }
    @AfterClass
    public void teardown(){
    //close the app
    driver1.quit();
    }
    
    }

    pls help

     
     

    2 similar answers  

     

    one way is to make the String string1 static

    public class Favourites extends ActionBarActivity {
    
     public static  String string1;
    String st2;
    public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.fav);
        final Button but1 = (Button) findViewById(R.id.button1);

    and

    Favourites.string1 = Athenry;
     

     

     

     

    Because you did declare the access modifier for the variable string1. It is private by default. You have to make it public like this:

    public String string1;

    But that is a bad practice. You would want to have getter and setters for these kinds of jobs. So basically this:

    private String string1;
    public String setString1(String s){
    string1 = s;
    }

    And you access it by calling the method

    Object.setString("Your String");
  • 相关阅读:
    Jmeter简单教程
    SpringMVC @RequestBody请求参数在postman中的请求
    maven多环境部署
    idea中项目文件颜色含义
    本地Consumer和Producer无法使用远程Kafka服务器的处理办法
    CentOS7 64位下MySQL5.7安装与配置(YUM)
    git学习笔记
    Nginx的启动、重启、关闭命令
    Mysql update 错误
    spring框架源码编译
  • 原文地址:https://www.cnblogs.com/melody-emma/p/4930733.html
Copyright © 2020-2023  润新知