- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我见过很多等待 Selenium Web 驱动程序(特别是 Java)的方法( such as this one )。然而,应用这里的方法似乎不起作用。
我试图通过循环哈希表中的值来测试用户查询结果。我在下面的代码中尝试了两种方法:WAITING document.readyState 和加载由类选择的项目。然而,似乎列表正在创建所有内容,而没有留下元素刷新完成的时间。
package newproject;
import java.util.List;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.TimeUnit;
import java.util.ArrayList;
import org.openqa.selenium.*;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.WebDriverWait;
//import org.openqa.selenium.chrome.ChromeDriver;
public class MyClass {
public static void main(String[] args) {
System.setProperty("webdriver.gecko.driver", "/Users/niunani/Selenium/geckodriver");
WebDriver driver = new FirefoxDriver();
driver.manage().timeouts().implicitlyWait(15, TimeUnit.SECONDS);
String baseUrl = "https://www.zillow.com/san-diego-ca-92109/";
//get price button and click
WebElement priceButton = driver.findElement(By.id("price"));
priceText = priceButton.getText();
System.out.println(priceText);
//priceButton.click();
Map<String, List<String>> priceTestCases = new HashMap<String, List<String>>();
List<String> threeHundThouSet = new ArrayList<String>();
threeHundThouSet.add("400000");
threeHundThouSet.add("500000");
threeHundThouSet.add("600000");
threeHundThouSet.add("700000");
threeHundThouSet.add("800000");
threeHundThouSet.add("900000");
threeHundThouSet.add("1000000");
List<String> fourHundThouSet = new ArrayList<String>();
fourHundThouSet.add("500000");
fourHundThouSet.add("600000");
fourHundThouSet.add("700000");
fourHundThouSet.add("800000");
fourHundThouSet.add("900000");
fourHundThouSet.add("1000000");
List<String> fiveHundThouSet = new ArrayList<String>();
fiveHundThouSet.add("600000");
fiveHundThouSet.add("700000");
fiveHundThouSet.add("800000");
fiveHundThouSet.add("900000");
fiveHundThouSet.add("1000000");
priceTestCases.put("300000", threeHundThouSet);
priceTestCases.put("400000", fourHundThouSet);
priceTestCases.put("500000", fiveHundThouSet);
WebElement priceExposedMin = driver.findElement(By.id("price-exposed-min"));
WebElement priceExposedMax = driver.findElement(By.id("price-exposed-max"));
WebElement priceDoneButton = driver.findElement(By.xpath("/html/body/div[1]/div[6]/div/div[1]/div[1]/div[2]/div[2]/div/div/div/button"));
priceButton.click();
for (Map.Entry<String, List<String>> entry : priceTestCases.entrySet()) {
String key = entry.getKey();
List<String> values = entry.getValue();
System.out.println("Key = " + key);
System.out.println("Values = " + values + "n");
//priceExposedMin.clear();
for (int i=0;i<20;i++) {
priceExposedMin.sendKeys(Keys.BACK_SPACE);
}
priceExposedMin.sendKeys(key);
for (String maxPrice : values) {
System.out.println(maxPrice);
//priceExposedMax.clear();
//wait.until(ExpectedConditions.elementToBeClickable(By.xpath("//*[@id=\"price-exposed-max\"]"))).clear();
for (int i=0;i<20;i++) {
priceExposedMax.sendKeys(Keys.BACK_SPACE);
}
priceExposedMax.sendKeys(maxPrice);
priceDoneButton.click();
//ONE WAY: wait for document.readyState
new WebDriverWait(driver, 30).until(
webDriver -> ((JavascriptExecutor) webDriver).executeScript("return document.readyState").equals("complete"));
//SECOND WAY: Wait for 30 sec until AJAX search load the content
//new WebDriverWait(driver,30).until(ExpectedConditions.visibilityOfAllElementsLocatedBy(By.className("list-card-price")));
Integer countWrong = 0;
List<WebElement> returnPrices = driver.findElements(By.className("list-card-price"));
System.out.println(returnPrices);
for (WebElement priceElement : returnPrices) {
String priceString = priceElement.getText();
priceString = priceString.replace("Est. $", "");
priceString = priceString.replace("$", "");
priceString = priceString.replace(",", "");
Integer price = Integer.parseInt(priceString);
if (price > Integer.parseInt(maxPrice)) {
countWrong++;
System.out.println("Over price : " + Integer.toString(price));
}
System.out.println("This price : " + Integer.toString(price));
}
System.out.println("Incorrect query result: " + Integer.toString(countWrong)) ;
priceButton.click();
}
}
}
}
我有时会出现以下错误,这实际上可能是在元素更新时发生的。我正在寻找可以解决此问题的解决方案:
Exception in thread "main" org.openqa.selenium.StaleElementReferenceException: The element reference of <div class="list-card-price"> is stale; either the element is no longer attached to the DOM, it is not in the current frame context, or the document has been refreshed
For documentation on this error, please visit: https://www.seleniumhq.org/exceptions/stale_element_reference.html
Build info: version: '3.141.59', revision: 'e82be7d358', time: '2018-11-14T08:25:48'
System info: host: 'Nhus-MacBook-Pro.local', ip: 'fe80:0:0:0:27:7d6f:961a:384a%en0', os.name: 'Mac OS X', os.arch: 'x86_64', os.version: '10.14', java.version: '1.8.0_221'
Driver info: org.openqa.selenium.firefox.FirefoxDriver
Capabilities {acceptInsecureCerts: true, browserName: firefox, browserVersion: 70.0.1, javascriptEnabled: true, moz:accessibilityChecks: false, moz:buildID: 20191030021342, moz:geckodriverVersion: 0.26.0, moz:headless: false, moz:processID: 9634, moz:profile: /var/folders/8c/whfw1mpd5tq..., moz:shutdownTimeout: 60000, moz:useNonSpecCompliantPointerOrigin: false, moz:webdriverClick: true, pageLoadStrategy: normal, platform: MAC, platformName: MAC, platformVersion: 18.0.0, rotatable: false, setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: dismiss and notify}
Session ID: b93bceb8-123a-b546-8743-5c402cd8b341
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
at org.openqa.selenium.remote.http.W3CHttpResponseCodec.createException(W3CHttpResponseCodec.java:187)
at org.openqa.selenium.remote.http.W3CHttpResponseCodec.decode(W3CHttpResponseCodec.java:122)
at org.openqa.selenium.remote.http.W3CHttpResponseCodec.decode(W3CHttpResponseCodec.java:49)
at org.openqa.selenium.remote.HttpCommandExecutor.execute(HttpCommandExecutor.java:158)
at org.openqa.selenium.remote.service.DriverCommandExecutor.execute(DriverCommandExecutor.java:83)
at org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:552)
at org.openqa.selenium.remote.RemoteWebElement.execute(RemoteWebElement.java:285)
at org.openqa.selenium.remote.RemoteWebElement.isDisplayed(RemoteWebElement.java:326)
at org.openqa.selenium.support.ui.ExpectedConditions$8.apply(ExpectedConditions.java:233)
at org.openqa.selenium.support.ui.ExpectedConditions$8.apply(ExpectedConditions.java:228)
at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:249)
at newproject.MyClass.main(MyClass.java:110)
我当前的解决方法非常丑陋,并且使测试花费的时间可能太长:
package newproject;
import java.util.List;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.TimeUnit;
import java.util.ArrayList;
import org.openqa.selenium.*;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.WebDriverWait;
//import org.openqa.selenium.chrome.ChromeDriver;
public class MyClass {
public static void main(String[] args) {
System.setProperty("webdriver.gecko.driver", "/Users/niunani/Selenium/geckodriver");
WebDriver driver = new FirefoxDriver();
driver.manage().timeouts().implicitlyWait(15, TimeUnit.SECONDS);
String baseUrl = "https://www.zillow.com/san-diego-ca-92109/";
String tagName = "";
String titleText = "";
String priceText = "";
//search title
driver.get(baseUrl);
WebElement searchTitle = driver.findElement(By.className("search-title"));
tagName = searchTitle.getTagName();
System.out.println(tagName);
titleText = searchTitle.getText();
System.out.println(titleText);
//get price button and click
WebElement priceButton = driver.findElement(By.id("price"));
priceText = priceButton.getText();
System.out.println(priceText);
//priceButton.click();
Map<String, List<String>> priceTestCases = new HashMap<String, List<String>>();
List<String> threeHundThouSet = new ArrayList<String>();
threeHundThouSet.add("400000");
threeHundThouSet.add("500000");
threeHundThouSet.add("600000");
threeHundThouSet.add("700000");
threeHundThouSet.add("800000");
threeHundThouSet.add("900000");
threeHundThouSet.add("1000000");
List<String> fourHundThouSet = new ArrayList<String>();
fourHundThouSet.add("500000");
fourHundThouSet.add("600000");
fourHundThouSet.add("700000");
fourHundThouSet.add("800000");
fourHundThouSet.add("900000");
fourHundThouSet.add("1000000");
List<String> fiveHundThouSet = new ArrayList<String>();
fiveHundThouSet.add("600000");
fiveHundThouSet.add("700000");
fiveHundThouSet.add("800000");
fiveHundThouSet.add("900000");
fiveHundThouSet.add("1000000");
priceTestCases.put("300000", threeHundThouSet);
priceTestCases.put("400000", fourHundThouSet);
priceTestCases.put("500000", fiveHundThouSet);
WebElement priceExposedMin = driver.findElement(By.id("price-exposed-min"));
//priceExposedMin.clear();
//priceExposedMin.sendKeys("300000");
WebElement priceExposedMax = driver.findElement(By.id("price-exposed-max"));
//WebElement priceExposedMax = wait.until(
// ExpectedConditions.visibilityOfElementLocated(By.id("price-exposed-max")));
//WebElement priceExposedMax = new WebDriverWait(driver, 10).until(ExpectedConditions.visibilityOfElementLocated(driver.findElement(By.id("price-exposed-max"))));
//priceExposedMax.clear();
//priceExposedMax.sendKeys("500000");
WebElement priceDoneButton = driver.findElement(By.xpath("/html/body/div[1]/div[6]/div/div[1]/div[1]/div[2]/div[2]/div/div/div/button"));
priceButton.click();
for (Map.Entry<String, List<String>> entry : priceTestCases.entrySet()) {
String key = entry.getKey();
List<String> values = entry.getValue();
System.out.println("Key = " + key);
System.out.println("Values = " + values + "n");
//priceExposedMin.clear();
for (int i=0;i<20;i++) {
priceExposedMin.sendKeys(Keys.BACK_SPACE);
}
priceExposedMin.sendKeys(key);
for (String maxPrice : values) {
System.out.println(maxPrice);
//priceExposedMax.clear();
//wait.until(ExpectedConditions.elementToBeClickable(By.xpath("//*[@id=\"price-exposed-max\"]"))).clear();
for (int i=0;i<20;i++) {
priceExposedMax.sendKeys(Keys.BACK_SPACE);
}
priceExposedMax.sendKeys(maxPrice);
priceDoneButton.click();
//wait for document.readyState
//new WebDriverWait(driver, 30).until(
// webDriver -> ((JavascriptExecutor) webDriver).executeScript("return document.readyState").equals("complete"));
//Wait for 30 sec until AJAX search load the content
new WebDriverWait(driver,30).until(ExpectedConditions.visibilityOfAllElementsLocatedBy(By.className("list-card-price")));
//new WebDriverWait(driver,30).until(ExpectedConditions.visibilityOfAllElementsLocatedBy(By.cssSelector("ul > li.closed")));
int timeToWait = 10; //second
try {
for (int i=0; i<timeToWait ; i++) {
Thread.sleep(2000);
}
} catch (InterruptedException ie)
{
Thread.currentThread().interrupt();
}
Integer countWrong = 0;
boolean result = false;
int attempts = 0;
while (attempts < 2) {
try {
List<WebElement> returnPrices = driver.findElements(By.className("list-card-price"));
System.out.println(returnPrices);
for (WebElement priceElement : returnPrices) {
String priceString = priceElement.getText();
priceString = priceString.replace("Est. $", "");
priceString = priceString.replace("$", "");
priceString = priceString.replace(",", "");
Integer price = Integer.parseInt(priceString);
if (price > Integer.parseInt(maxPrice)) {
countWrong++;
System.out.println("Over price : " + Integer.toString(price));
}
System.out.println("This price : " + Integer.toString(price));
}
System.out.println("Incorrect query result: " + Integer.toString(countWrong)) ;
priceButton.click();
result = true;
break;
} catch(StaleElementReferenceException e) {
}
attempts++;
}
}
}
//driver.close();
//System.exit(0);
}
}
最佳答案
如果您使用可重用的代码编写代码,那么它将更容易理解并且看起来不会难看。尝试使用小型可重用的代码,然后将它们组合起来测试功能
关于java - Selenium Web 驱动程序 - 在循环内等待 (Java),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58759087/
我正在尝试为基于 arm 的板交叉编译驱动程序。在 make 文件中,包含文件的搜索路径是主机内核的路径,即它指向 ubuntu 附带的 linux 头文件。我在主机系统(i7/ubuntu)上也有目
1、准备材料 开发板(正点原子stm32f407探索者开发板V2.4) 。 STM32CubeMX软件(Version 6.10.0) 。 野火DAP仿真器 。 keil µVis
是否可以通过 c# 应用程序“驱动”excel(即从 excel gui 下拉列表中选择某些内容,按下按钮并读取特定单元格的内容)? 这并不是真正用于测试,而是用于类似于 selenium 的数据报废
给定任何具有超过 5 个 View 和 View 模型的中间 MVVM 应用程序,是否有任何推荐的设计模式来说明如何为此类应用程序搭建脚手架? 现在我通常有一个在 App.OnStartup 中创建的
我想知道如何使用曼哈顿距离启发式来驱动 NxN 二维数组中的搜索。我有以下曼哈顿距离: private int manhattan(int[] pos, int tile) { int
我试图了解 CUmodule 在 CUDA 驱动程序 API 函数中实际上代表什么。 许多 CUDA 驱动程序 API 函数都有一个 CUmodule 句柄,但它是什么?它是引导驱动程序调用过程的 d
我正在尝试创建一个 java 程序,它将创建 excel 文件并将其上传到谷歌驱动器中。上传后我需要它来授予权限。我已经完成了所有这些,但问题在于尝试将 excel 文件转换为 google 文件,以
我正在拼命尝试从 Linux(Raspbian 内核 4.4.12-v7+)与使用 TIUSB3410 USB 部件的设备进行通信。 这是 dmesg 的输出: [ 2730.016013] usb
我有一个关于在 PCIe 上使用突发读写的问题。我有一个 fpga,它通过 PCIe 连接到 cpu。我有一个简单的驱动程序,仅用于测试。驱动程序向 FPGA 写入数据以及从 FPGA 读取数据。 f
我有大约 500 条通往特定页面的可能路径,我需要测试所有这些路径。该页面的每个路径看起来都类似于此(使用 PHP 网络驱动程序;通常有大约 10 个步骤): // Navigate to form
如果chrome驱动的版本和当前的chrome版本不同,我想写一个python代码,下载并运行与当前chrome版本匹配的chrome驱动。 这就是我一直在寻找的东西 driver = webdriv
我在 Centos 7 Linux 机器上尝试通过 pyodbc 连接到 SQL 数据库。我了解到您需要设置 DSN,您可以通过安装 freetds 驱动程序并执行以下操作来实现: import py
是否可以使用 NUnit 通过 NDepend 运行 CQL 查询?如果能够将 NDepend dll 包含在 UnitTests 库中并编写如下测试,那就太好了: [Test] public voi
我在 cassandra 中有巨大的表,超过 20 亿行并且还在增加。这些行有一个日期字段,它遵循日期桶模式以限制每一行。 即便如此,对于某个特定日期,我也有超过一百万条条目。 我想尽快读取和处理每一
考虑以下示例,其中一个模块的输出 (inner::out) 应该驱动两个输出(outer::out 和 outer::out2) 的上层层次: #include SC_MODULE(inner) {
我不确定是否可以有一个具有多个 MySQL 根的连接器。当我尝试只使用一根根时,它效果完美。我的有 2 个根的代码如下所示: [ 'locale' => 'es_ES.UTF-8',
我的桌面APP无法注册Mysql JDBC驱动 我下载mysql-connector-java-5.1.16.zip 解压mysql-connector-java-5.1.16-bin.jar并将其放
我有一个无限循环等待输入的 python 脚本,然后输入发生时做一些事情。我的问题是制作 python告诉 emacs 做某事。我只需要一些方法来发送 emacs 输入并让 emacs 评估该输入。
我最初问的没有明确说明我的问题/问题,所以我会更好地解释它。我有一个将 JDialog 设置为可见的 JButton。 JDialog 有一个 WindowListener 将其设置为在 window
假设“doc”是我想插入到 MongoDB 集合中的一些文档,而“collection”是我要将文档插入到的集合。 我有如下内容: try { WriteConcern wc = new Wr
我是一名优秀的程序员,十分优秀!