【发布时间】:2018-09-05 11:42:05
【问题描述】:
enter image description here试图在facebook上传照片但无法点击上传照片链接
my_profile.changePicture("E:\My Documents\Desktop");
公共类 MyProfilePage 扩展页面 {
public void changePicture(String filepath) {
try {
Thread.sleep(9000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
click("profile_picture");
try {
Thread.sleep(9000);
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
click("upload_picture");
type("upload_picture", filepath);
}
Xpath 存储在 config.properties 文件中。
upload_picture=//a[@data-action-type='upload_photo']/div/input[@type='file'][@class='_n _5f0v'][@title='选择一个文件上传'][包含(@id,'js')]
【问题讨论】: