<div class="" data-zone-data="{"id":"91542578"}" data-zone-name="category-link">
<div class="_35SYuInI1T _1vnugfYUli" data-tid="acbe4a11 f2d7f3b0">
<a href="/catalog--elektronika/54440" class="_3Lwc_UVFq4">
<span class="_3z8GfB4w3a">Электроника</span>
</a>
</div>
</div>
data-tid="acbe4a11 f2d7f3b0">
data-zone-data="{"id":"91542578"}"
driver.findElement(By.xpath("//*[contains(@data-zone-data, '91542578')]/a"));
driver.findElement(By.xpath("//*[contains(@data-zone-data, '91542578')]/@data-zone-data"));
driver.findElement(By.xpath("//*[@data-zone-data='91542578']/a"))
Thrown when attempting to add a cookie under a different domain than the current URL.
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>
compile("org.springframework.boot:spring-boot-starter-web") {
exclude module: "spring-boot-starter-tomcat"
}
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
List<Integer> nums = new ArrayList<>();
System.out.println("Enter the first number:");
boolean active = true;
while(active) {
if (scanner.hasNextInt()) {
nums.add(scanner.nextInt());
continue;
} else {
String exit = scanner.next();
if ("exit".equals(exit)) {
active = false;
}
continue;
}
}
System.out.println("Entered numbers:");
nums.forEach(System.out::println);
}
"выполняй".equals(a)
не выбросит NPEa.equals("выполняй")
выбросит NPEчто многие компании переписывают C# на Java
https://www.browserstack.com/guide/wait-commands-i...
Например,
Иначе, действительно страница загружается, а контент еще не успел загрузиться. А selenium пытается достучаться до несуществующего элемента DOM