- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试访问 website 上的 WebElement
单击前一个 html 元素后。当您加载网站时,您将看到一个对象网格(对于这个问题的上下文,我们将其称为卡片)。如果您在单击任何内容之前检查页面,您将看到在 body > div.view >section.list.gi
div 下,有多个属于 item.card
类的 div。正如您在下面的代码中看到的,我使用 firstCard
选择器获取属于该类的第一个卡片对象。然后,我调用 .click()
方法来模拟单击并等待几秒钟。但在那之后,我遇到了麻烦。我想访问位于 "body > div.overlay > div#cards"+base + "> div.one.card"
div 标签内的所选卡片的 base
属性。经过一番搜索后,我发现 div.overlay
中每个卡片对象的 id
(在网站首次加载时用户单击卡片之后)是字符串 cards
+ 您在上面看到的 base
字符串。现在,base
字符串是每个卡片对象的一个属性(在网站首次加载时单击它之前),因此我检索该值并将其存储在 String base
字段中。因此,当我使用 dataSelector
字段在开头单击第一张卡的图标后尝试访问它的“base”属性时,我收到一条错误,该元素不存在,但 dataSelector
的值是 body > div.overlay > div#cards1018031 > div.one.card
这对我来说看起来不错。关于为什么找不到该元素有什么想法吗?
myClass.java:
public static void main(String[] args) throws InterruptedException {
String url = "https://dbz.space/cards/"; // The website to read data from
DesiredCapabilities caps = new DesiredCapabilities();
caps.setJavascriptEnabled(true);
caps.setCapability(PhantomJSDriverService.PHANTOMJS_EXECUTABLE_PATH_PROPERTY,"C:/Users/Steli/OneDrive/Documents/PhantomJS/phantomjs-2.1.1-windows/bin/phantomjs.exe");
WebDriver driver = new PhantomJSDriver(caps);
driver.get(url); // Connect to the url
//WebElement button = driver.findElement(new By.ByCssSelector("body > div.view > section.more > div.content > div.btn.mat")); // Get the Show more Button element
String firstCard = "body > div.view > section.list.gi > div.item.card";
WebElement card = driver.findElement(By.cssSelector(firstCard));
String base = card.getAttribute("base");
if(isClickable(card,driver)) {
card.click();
Thread.sleep(5000);
String dataSelector = "body > div.overlay > div#cards"+base + " > div.one.card";// + " > div.one.card > div.common > div.stats > div > div.stat";
System.out.println(dataSelector);
WebElement data = driver.findElement(By.cssSelector(dataSelector));
System.out.println(data.getAttribute("base"));
}
}
P.S: isClickable()
方法的实现如下:
private static boolean isClickable(WebElement el, WebDriver driver) {
try{
WebDriverWait wait = new WebDriverWait(driver, 6);
wait.until(ExpectedConditions.elementToBeClickable(el));
//System.out.println("clickable!");
return true;
}
catch (Exception e){
return false;
}
}
最佳答案
我刚刚复制了您的代码并粘贴到那里以检查 chrome 驱动程序及其工作正常。但是,您可以使用显式等待来代替 sleep 。 WebDriverWait
public static void main(String[] args) throws InterruptedException {
// TODO Auto-generated method stub
System.setProperty("webdriver.chrome.driver", "D:\\Software\\chromedriver.exe");
WebDriver driver = new ChromeDriver();
driver.get("https://dbz.space/cards/");
String firstCard = "body > div.view > section.list.gi > div.item.card";
WebElement card = driver.findElement(By.cssSelector(firstCard));
String base = card.getAttribute("base");
card.click();
Thread.sleep(5000);
String dataSelector = "body > div.overlay > div#cards"+base + " > div.one.card";// + " > div.one.card > div.common > div.stats > div > div.stat";
System.out.println(dataSelector);
WebElement data = driver.findElement(By.cssSelector(dataSelector));
System.out.println(data.getAttribute("base"));
}
在我的控制台上输出:
<小时/>使用 WebDriverWait 代替 sleep 。
public static void main(String[] args) throws InterruptedException {
// TODO Auto-generated method stub
System.setProperty("webdriver.chrome.driver", "D:\\Software\\chromedriver.exe");
WebDriver driver = new ChromeDriver();
driver.get("https://dbz.space/cards/");
String firstCard = "body > div.view > section.list.gi > div.item.card";
WebDriverWait wait = new WebDriverWait(driver, 20);
WebElement card=wait.until(ExpectedConditions.elementToBeClickable(By.cssSelector(firstCard)));
String base = card.getAttribute("base");
card.click();
String dataSelector = "body > div.overlay > div#cards"+base + " > div.one.card";
System.out.println(dataSelector);
WebElement data =wait.until(ExpectedConditions.visibilityOfElementLocated(By.cssSelector(dataSelector)));
System.out.println(data.getAttribute("base"));
}
关于java - 使用 WebDriver 无法通过 CSS 选择器找到 WebElement,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58381468/
我想在 Watir webdriver 中使用 selenium webdriver Actions。这可能吗? 也可以在 watir webdriver 中使用 java 代码。请帮忙。 我浏览了很
我正在使用 watir-webdriver 浏览我的网站并在不同的浏览器中抓取屏幕截图。 有时在 IE 中截取的屏幕截图大小合适,但颜色完全是黑色。同时运行的 Firefox 测试看起来很好。 bro
我已经编写了 driver.findElement(By.id("kfiDocumentLink")).click(); 用于单击“KFI 文档”按钮的代码。 请找到HTML代码。 Download
我有一个包含以下内容的 html 页面: This is Login page. Please click below link
我想获得页面加载异常,但仍然没有结果。 我使用implicitlyWait 设置计时器以抛出异常。 WebDriver driver = new FirefoxDriver(); driver.man
我正在使用具有 IE 特定应用程序的 Selenium Webdriver。我知道我们可以截取执行的截图。同样,是否有任何选项可以将 selenium 执行记录为视频? 最佳答案 WebDriver
Selenium WebDriver 如何克服同源策略? Selenium RC 中存在同源策略问题 最佳答案 First of all “Same Origin Policy” is introdu
我将如何从输入文件中提取文本?我尝试使用 XPath/CSSSelector 但我得到一个空文本,因为它是一个输入字段。 这是我的 html 代码: 结果:195 行中的 1 到 50
如何使用 WebDriver 自动验证码? 是否有其他方法可以使用 Webdriver 自动执行验证码? 最佳答案 您只能使用“alt”属性中的显示验证码值来自动化验证码。 在 WebElement
最近我开始学习 WebDriver,因为我工作的客户计划使用 WebDriver 来自动化 Web 应用程序。 我怀疑 WebDriver 如何在网页上定位其 ID 动态变化的元素(比如每次登录应用程
我发现 watir-webdriver 在一个非常大的页面上通过正则表达式定位元素非常慢,至少在 FF 8.0.1 中对我来说是这样。航类搜索结果页面示例(包含大约 50 个搜索结果,每个都是 htm
我有一个动态更改其文本的字段。我需要一种方法来等待文本被更改。我不知道会出现什么文本,但我知道当前那里有什么文本。所以我想等待它在元素中消失。有办法吗? 最佳答案 你可以试试ExpectedCondi
自从我使用 Firefox 升级到 3.0 beta 后,我就有了这个异常(exception)。 Exception in thread "main" java.lang.IllegalStateE
任何人都可以帮助我使用 Selenium webdriver 截取整页屏幕截图。我正在使用 c#/Nunit。我正在使用的当前方法不是完整的浏览器页面。 我正在使用下面的代码截取屏幕截图。 publi
我通过 WebDriver (Chrome) 从网页下载图像 // STEP 1 $driver->get($link); // STEP 2 $els=$driver->findElements(W
Selenium WebDriver 的默认隐式等待值是什么? selenium 文档说它是“0”,但是当我在一个全新的项目上调用 .findElement 时,DOM 上不存在元素,它似乎在一段时间
我正在使用 Webdriver 测试 Web 应用程序,大致如下所述。当测试通过时,一切都很好。但是,当其中一个测试失败时,我注意到以下 2 个问题。 a) 如果一个测试失败,则套件中的其余测试将超时
我正在使用 Selenium WebDriver 并遇到问题。 在 UI 中,WebDriver 可以看到元素,但无法执行任何操作,例如单击、键入、选择等。元素由 selenium 找到并作为 web
我在 Java 中使用 Web 驱动程序处理 UntrustedSSLcertificates 时陷入困境。 我创建了 Firefox 配置文件,如: FirefoxProfile profile =
选择的编程语言是 Java。我已经用 Java 编写了一个方法,我将 WebDriver 作为参数传递给它... public boolean myMethod(WebDriver webDriver
我是一名优秀的程序员,十分优秀!