51Testing软件测试论坛

 找回密码
 (注-册)加入51Testing

QQ登录

只需一步,快速开始

微信登录,快人一步

手机号码,快捷登录

查看: 1978|回复: 1
打印 上一主题 下一主题

Springboot集成selenide 自动化测试

[复制链接]

该用户从未签到

跳转到指定楼层
1#
发表于 2019-3-20 15:33:19 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
一、导入相应依赖  pom.xml如下  因为selenide包含了selenium的api  为了能自主配置selenium 所以selenide模块移除了selenium 然后自定义配置了selenium
  1. <dependency>
  2.     <groupId>com.codeborne</groupId>
  3.     <artifactId>selenide</artifactId>
  4.     <version>4.7</version>
  5.     <scope>test</scope>
  6.     <exclusions>
  7.         <exclusion>
  8.             <groupId>org.seleniumhq.selenium</groupId>
  9.             <artifactId>selenium</artifactId>
  10.         </exclusion>

  11.         <exclusion>
  12.             <groupId>org.seleniumhq.selenium</groupId>
  13.             <artifactId>selenium-support</artifactId>
  14.         </exclusion>

  15.     </exclusions>
  16. </dependency>

  17. <dependency>
  18.     <groupId>org.seleniumhq.selenium</groupId>
  19.     <artifactId>selenium-java</artifactId>
  20.     <version>2.53.1</version>
  21. </dependency>

  22. <dependency>
  23.     <groupId>org.seleniumhq.selenium</groupId>
  24.     <artifactId>selenium-chrome-driver</artifactId>
  25.     <version>2.53.1</version>
  26. </dependency>

  27. <dependency>
  28.     <groupId>org.seleniumhq.selenium</groupId>
  29.     <artifactId>selenium-api</artifactId>
  30.     <version>2.53.1</version>
  31. </dependency>

  32. <dependency>
  33.     <groupId>org.seleniumhq.selenium</groupId>
  34.     <artifactId>selenium-edge-driver</artifactId>
  35.     <version>2.53.1</version>
  36. </dependency>

  37. <dependency>
  38.     <groupId>org.seleniumhq.selenium</groupId>
  39.     <artifactId>selenium-firefox-driver</artifactId>
  40.     <version>2.53.1</version>
  41. </dependency>

  42. <dependency>
  43.     <groupId>org.seleniumhq.selenium</groupId>
  44.     <artifactId>selenium-ie-driver</artifactId>
  45.     <version>2.53.1</version>
  46. </dependency>

  47. <dependency>
  48.     <groupId>org.seleniumhq.selenium</groupId>
  49.     <artifactId>selenium-remote-driver</artifactId>
  50.     <version>2.53.1</version>
  51. </dependency>

  52. <dependency>
  53.     <groupId>org.seleniumhq.selenium</groupId>
  54.     <artifactId>selenium-safari-driver</artifactId>
  55.     <version>2.53.1</version>
  56. </dependency>

  57. <dependency>
  58.     <groupId>org.seleniumhq.selenium</groupId>
  59.     <artifactId>selenium-support</artifactId>
  60.     <version>2.53.1</version>
  61. </dependency>
复制代码

二、在指定位置生成测试类文件

在springboot的测试目录下创建Test类


三、测试类编写

  1. import com.codeborne.selenide.Configuration;
  2. import org.junit.BeforeClass;
  3. import org.junit.FixMethodOrder;
  4. import org.junit.Test;
  5. import org.junit.runners.MethodSorters;

  6. import static com.codeborne.selenide.Condition.text;
  7. import static com.codeborne.selenide.Selenide.*;

  8. @FixMethodOrder(MethodSorters.NAME_ASCENDING) //name_ascending 是如果跑整个class 会根据方法名顺序跑
  9. public class UserTest {
  10.     @BeforeClass
  11.     public static void setUp() {
  12.         Configuration.timeout = 6000;
  13.         Configuration.browser = "chrome"; //设置浏览器驱动,默认路径看下图 也可以不用默认路径

  14.         //Configuration.reportsFolder = "test-result/reports"; selenide失败回自动保存快照  这是配置快照保存目录 默认也是这个

  15.     }

  16. //自动化 访问百度
  17.     @Test
  18.     public void step00_test() {
  19.         open("https://www.baidu.com");
  20.         $("body").shouldHave(text("百度"));
  21.         sleep(5000);
  22.     }

  23.     @Test
  24.     public void step01_addUserSuccess() {
  25.         loginSuperForestry();
  26.         open("/admin");
  27.         $(".wrapper-content").shouldHave(text("添加账号"));

  28.         String user = "qq" + Double.valueOf(Math.random() * 1000000).intValue();
  29.         setUserMessage(user, "哈哈", 0);

  30.         $("#addUser").click();
  31.         $("#userTable").shouldHave(text(user));
  32.     }
复制代码

四、配置浏览器驱动(pom.xml配置好后,如果仓库没有驱动,需要手动配置)


配置driver  配置到如下路径  这个路径也是默认路径



本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?(注-册)加入51Testing

x
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏
回复

使用道具 举报

本版积分规则

关闭

站长推荐上一条 /1 下一条

小黑屋|手机版|Archiver|51Testing软件测试网 ( 沪ICP备05003035号 关于我们

GMT+8, 2024-11-18 14:38 , Processed in 0.058312 second(s), 23 queries .

Powered by Discuz! X3.2

© 2001-2024 Comsenz Inc.

快速回复 返回顶部 返回列表