如何使用氦气找到元素位置?

时间:2015-05-31 16:10:05

标签: automation helium

我是氦气自动化工具的新手,我正在尝试自动化谷歌登录页面

链接:https://www.google.com.bd/?gws_rd=cr,ssl&ei=zi5rVfScH4yfugTkv4EY

在此页面中,我想要氦气点击登录按钮 我知道语法可以如下

import java.io.*;
import static java.lang.System.*;

class readfile {
    public static void main(String[] args) {
        try {
            FileReader fr = new FileReader("filename");
            BufferedReader br = new Buffered(fr);
            String str;
            while ((str = br.readLine()) != null) {}
            br.close();
        } catch (IOException e) {
            out.println("file not found");
        }
    }
}

我的问题是我如何使用上面登录按钮的point和comboBox选项。 提前谢谢。

1 个答案:

答案 0 :(得分:0)

使用点击功能:

from helium import *
click('login in')
write("your usrname", into="field name")#input field
write("your pwd", into="field name")#input field
click('login')

有时您应该手动验证机器人检查。