我写了如下:
List tempElements = wd.findElements(By.xpath("//@id"));
但出现错误:
The given selector //@id is either invalid or does not result in a WebElement. The following error occurred:
InvalidSelectorError: The result of the xpath expression "//@id" is: [object Attr]. It should be an element.
找到所有的id属性后,我应该用什么保存?
第三个问题:
如何向textarea中输入回车?
我在XML中定义了
<content><![CDATA[hello world \n this is first mail ]]></content>
使用java解析后放到String content变量中,然后捕捉到textarea这个WebElement后,使用sendkeys(content);
但输入的内容还是原样,没有将\n解析成回车