首页 > 代码库 > 自动化框架FluentLenium学习

自动化框架FluentLenium学习

github地址:https://github.com/FluentLenium/FluentLenium

常用的页面控件操作方法(element需要先通过css selector找到):

[input]              fill("input[name=‘name‘]").with(name);

[checkbox]          find("input[type=checkbox]").click();

[radionbutton]      find("input[type=radio]").click();

[attachment]     element.getElement().sendKeys(filePath);

自动化框架FluentLenium学习