gpt4 book ai didi

java - 如何在 Hudson 3.2.1 中运行 "file upload"测试用例

转载 作者:行者123 更新时间:2023-12-01 22:30:42 25 4
gpt4 key购买 nike

我正在通过 Hudson 3.2.1 运行 selenium webdriver 测试用例但在“文件上传”测试用例中,我使用的是 Robot Framework,这就是它没有在 Hudson 中执行的原因。它单独通过 Maven 运行得很好。下面是我的文件上传代码:

public static void setClipboardData(String string) {
StringSelection stringSelection = new StringSelection(string);
Toolkit.getDefaultToolkit().getSystemClipboard().setContents(stringSelection, null);
}


driver.findElement(By.xpath(".//*[@id='photo']")).click();

setClipboardData("C:\\Users\\Townscript\\Downloads\\kick.jpg");

Robot robot;
try {
robot = new Robot();
robot.keyPress(KeyEvent.VK_CONTROL);
robot.keyPress(KeyEvent.VK_V);
robot.keyRelease(KeyEvent.VK_V);
robot.keyRelease(KeyEvent.VK_CONTROL);
robot.keyPress(KeyEvent.VK_ENTER);
robot.keyRelease(KeyEvent.VK_ENTER);
robot.delay(5000);
}
catch (AWTException e) {
e.printStackTrace();
}

最佳答案

如果 HTML 标签输入有 type = file

<input type="file">

您可以直接使用sendkeys上传文件。

WebDriver driver;
driver.findElement(By.<yourlocator>).sendKeys("FilePath");

希望对你有帮助!

关于java - 如何在 Hudson 3.2.1 中运行 "file upload"测试用例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27814330/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com