作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在Selenium
和windows 10
中的CSS选择器遇到问题。标签似乎不正确。而且,我不确定这是怎么回事。你能帮忙吗?
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.By;
import org.openqa.selenium.By.ById;
import org.openqa.selenium.By.ByXPath;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.ie.InternetExplorerDriver;
public class Locator2 {
public static void main(String[] args) {
System.setProperty("webdriver.chrome.driver","C:\\Users\\abhij\\Desktop\\seliniumjars\\chromedriver.exe");
WebDriver driver=new ChromeDriver();
driver.get("https://login.yahoo.com/?.src=ym&.intl=us&.lang=en- US&.done=https%3a//mail.yahoo.com");
driver.manage().timeouts().implicitlyWait(50, TimeUnit.SECONDS);
//driver.findElement(By.xpath(".//*[@id='login-username']")).sendKeys("asdfasd");
driver.findElement(By.cssSelector("input[id='login-username']]")).sendKeys("asdfasd");
//driver.findElement(By.cssSelector("input[id='login1']")).sendKeys("asdfasd");
//driver.manage().timeouts().implicitlyWait(50, TimeUnit.SECONDS);
//driver.findElement(By.cssSelector("input[name='login1']")).sendKeys("asdfasd");
}
}
异常(exception):
>Exception in thread "main" org.openqa.selenium.InvalidElementStateException: invalid element state: Failed to execute 'querySelector' on 'Document': 'input[id='login-username']]' is not a valid selector
最佳答案
Exception in thread "main" org.openqa.selenium.InvalidElementStateException: invalid element state: Failed to execute 'querySelector' on 'Document': 'input[id='login-username']]' is not a valid selector
cssSelector
不正确,只需省略最后一个
]
方括号即可,请尝试以下操作:
driver.findElement(By.cssSelector("input[id='login-username']")).sendKeys("asdfasd");
#id css selecter
通过
id
使用
cssSelector
属性值来定位元素,如下所示:-
driver.findElement(By.cssSelector("input#login-username")).sendKeys("asdfasd");
css selector
follow this reference。
Selenium
也可以直接使用元素的
id
属性值来定位元素,因此您可以使用
By.id()
以及以下元素来定位该元素:
driver.findElement(By.id("login-username")).sendKeys("asdfasd");
关于java - driver.findElement(By.cssSelector(..)) Selenium 在Windows 10中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40072671/
我是一名优秀的程序员,十分优秀!