有人可以帮助我。我尝试使用selenium IDE从下拉列表中选择一个选项但不能。下面是HTML.I尝试使用"选择"命令与目标中的xpath,但无法从选项中选择
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
TextView developper_field = (TextView) findViewById(R.id.developper_field);
developper_field.setText(R.string.developper_name);
developped_by.setText(R.string.developped_by);
Button start_app = (Button) findViewById(R.id.start_app);
start_app.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
Intent intent = new Intent(MainActivity.this,MainActivity2.class);
startActivity(intent);
}
});
}
}
答案 0 :(得分:0)
这就是我使用' 选择'命令一般:
对于select元素定位器,我通常会使用 xpath ,对于选项定位器,我会使用可以指定为正则表达式的label。例如:
label=regexp:^This_Matches_the_Option_I_want_to_Select$
希望这会有所帮助。
如果您发布正在处理的页面的html代码snipet以及您已编写的代码,我们可以为您提供更具体的答案。
如果您有任何问题,请与我联系。