在Selenium中,我如何在此标签中得到文本“ Mahesh Wagh”  Mahesh Wagh 

时间:2019-10-11 13:03:33

标签: selenium selenium-webdriver xpath

我已经登录到应用程序,并且要在登录后验证我的用户名,因此当我尝试查找自己名字的Web元素时,我得到了这样的html,其中我无法enter image description here无法获取xpath

请让我知道如何获取此类元素的xpath

2 个答案:

答案 0 :(得分:0)

使用此xpath = .//a[@class='dropdown-toggle']

并使用element.getText();

答案 1 :(得分:0)

推导WebDriverWaitelementToBeClickable()并遵循xpath。

WebDriverWait wait = new WebDriverWait(driver, 20);         
WebElement userele=wait.until(ExpectedConditions.elementToBeClickable(By.xpath("//a[./span[@class='glyphicon glyphicon-user']]")));
System.out.println(userele.getText().trim());