赞
踩
下面的文章将帮助您在使用Katalon Studio进行web自动化测试时排除一些问题。
一、Timed out waiting for driver server to start 超时等待驱动服务器启动
根本原因:使用当前Edge driver不兼容的问题
解决方案:
二、Unable to record on Internet Explorer 无法在Internet Explorer中记录
根本原因:Internet Explorer上的附加组件没有打开。
解决方案:
三、Unable to connect to Katalon server 无法连接到Katalon服务器
根本原因:Windows防火墙阻塞了Katalon Studio和浏览器驱动程序之间的连接
解决方案:您需要允许以下.exe文件:
通过Windows防火墙进行通信。下面是访问该接口的完整指南。
这些可执行文件可以位于:**\\配置\\ \资源\\ \驱动程序** **\\configuration\\resources\\drivers**
在最坏的情况下,如果当前的Windows防火墙也阻止它们,您可能还需要添加谷歌Chrome (Chrome .exe)和Firefox (Firefox .exe)。
四、Use different browser versions 使用不同的浏览器版本
如果您希望Katalon Studio在当前安装的版本之外使用不同的版本,有两种方法:
- package com.example
-
- import org.openqa.selenium.WebDriver
- import org.openqa.selenium.chrome.ChromeDriver
- import org.openqa.selenium.chrome.ChromeOptions
- import org.openqa.selenium.firefox.FirefoxDriver
- import com.kms.katalon.core.annotation.Keyword
- import com.kms.katalon.core.webui.driver.DriverFactory
-
- public class WebUICustomKeywords {
- @Keyword
- def openFirefoxBrowser(String firefoxPath, String firefoxDriver) {
- //Set path to Firefox version
- System.setProperty("webdriver.firefox.bin", firefoxPath)
- //Set path to Firefox driver: <Katalon Studio folder>\configuration\resources\drivers\firefox_win64\geckodriver.exe
- System.setProperty("webdriver.gecko.driver", firefoxDriver)
- WebDriver driver = new FirefoxDriver()
- DriverFactory.changeWebDriver(driver)
- }
-
- @Keyword
-
- def openChromeBrowser(String chromeDriverPath, String chromePath)
- {
- //Set path to chromedriver driver: <Katalon Studio folder>\configuration\resources\drivers\chrome_win32\chromedriver.exe
- System.setProperty("webdriver.chrome.driver", chromeDriverPath)
- ChromeOptions options = new ChromeOptions()
- //Set path to Chrome binary
- options.setBinary(chromePath)
- WebDriver driver = new ChromeDriver(options)
- DriverFactory.changeWebDriver(driver)
- }
- }
- CustomKeywords.'com.example.WebUICustomKeywords.openFirefoxBrowser'('C:\\Program Files\\Mozilla Firefox 52\\firefox.exe',
- 'C:\\5.4\\Katalon Studio Windows 64\\configuration\\resources\\drivers\\firefox_win64\\geckodriver.exe')
-
- WebUI.navigateToUrl(GlobalVariable.G_SiteURL)
-
- WebUI.click(findTestObject('Page_CuraHomepage/btn_MakeAppointment'))
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。