Katalon Recorder 浏览器插件

适合火狐与谷歌浏览器,可在各自的浏览器应用商店下载。

Katalon Recorder 浏览器插件

这是一款可以录制浏览器操作的工具,并且可以用 Export 导出成 webDriver 的各种语言的代码,例如以下是录制在百度搜索 java 关键词动作生成的脚本

package com.example.tests;

import java.util.regex.Pattern;
import java.util.concurrent.TimeUnit;
import org.junit.*;
import static org.junit.Assert.*;
import static org.hamcrest.CoreMatchers.*;
import org.openqa.selenium.*;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.support.ui.Select;

public class UntitledTestCase {
  private WebDriver driver;
  private String baseUrl;
  private boolean acceptNextAlert = true;
  private StringBuffer verificationErrors = new StringBuffer();

  @Before
  public void setUp() throws Exception {driver = new FirefoxDriver();
    baseUrl = "https://www.google.com/";
    driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
  }

  @Test
  public void testUntitledTestCase() throws Exception {driver.get("https://www.baidu.com/");
    driver.findElement(By.id("kw")).click();
    driver.findElement(By.id("kw")).clear();
    driver.findElement(By.id("kw")).sendKeys("java");
    driver.findElement(By.id("form")).submit();}

  @After
  public void tearDown() throws Exception {driver.quit();
    String verificationErrorString = verificationErrors.toString();
    if (!"".equals(verificationErrorString)) {fail(verificationErrorString);
    }
  }

  private boolean isElementPresent(By by) {try {driver.findElement(by);
      return true;
    } catch (NoSuchElementException e) {return false;}
  }

  private boolean isAlertPresent() {try {driver.switchTo().alert();
      return true;
    } catch (NoAlertPresentException e) {return false;}
  }

  private String closeAlertAndGetItsText() {try {Alert alert = driver.switchTo().alert();
      String alertText = alert.getText();
      if (acceptNextAlert) {alert.accept();
      } else {alert.dismiss();
      }
      return alertText;
    } finally {acceptNextAlert = true;}
  }
}

手机扫描二维码访问

本文标题:《Katalon Recorder 浏览器插件》作者:极四维博客
原文链接:https://cway.top/post/832.html
特别注明外均为原创,转载请注明。

分享到微信

扫描二维码

可在微信查看或分享至朋友圈。

相关文章

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

«    2024年10月    »
123456
78910111213
14151617181920
21222324252627
28293031

搜索

控制面板

您好,欢迎到访网站!
  查看权限

最新留言

文章归档

  • 订阅本站的 RSS 2.0 新闻聚合