selenium中AjaxElementLocatorFactory的用法

先查看一下AjaxElementLocatorFactory的源生代码

package org.openqa.selenium.support.pagefactory;

import org.openqa.selenium.SearchContext;

import java.lang.reflect.Field;

public class AjaxElementLocatorFactory implements ElementLocatorFactory {
  private final SearchContext searchContext;
  private final int timeOutInSeconds;

  public AjaxElementLocatorFactory(SearchContext searchContext, int timeOutInSeconds) {
    this.searchContext = searchContext;
    this.timeOutInSeconds = timeOutInSeconds;
  }

  public ElementLocator createLocator(Field field) {
    return new AjaxElementLocator(searchContext, field, timeOutInSeconds);
  }
}

 

AjaxElementLocatorFactory类是为了网页动态代码而存在的。最终目的是拿到一个ElementLocator类的对象。

首先需要定义一个AjaxElementLocatorFactory的类

Class<?> cls = Class.forName("com.testReflect.FieldDemo");
 //使用FieldDemo类的class对象生成 实例
Object obj = cls.newInstance();
//通过Class类中getField(String name): 获取类特定的方法,name参数指定了属性的名称
Field field = cls.getField("num1");
AjaxElementLocatorFactory ajaxElementLocatorFactory = new AjaxElementLocatorFactory(driver, 5000);

ElementLocator elementLocator = ajaxElementLocatorFactory.createLocator(field);

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值