gpt4 book ai didi

java - 从页面中的 Xpath 获取数据 - java

转载 作者:行者123 更新时间:2023-12-03 00:56:51 25 4
gpt4 key购买 nike

我需要从下面的链接获取数据

"http://www.portaldatransparencia.gov.br/servidores/Servidor-DetalhaRemuneracao.asp?Op=1&IdServidor=1952541&bInformacaoFinanceira=True "

在下面的 XPath 中,我需要运行几次,只需更改链接中的数字,但我不知道如何返回我需要的数据。

"//*[@id="listagemConvenios"]/table/tbody/tr[5]/td[3]"

谢谢。

最佳答案

使用动态 xpath 如下:-

String dd;
for(int i = 1; i <= counti; ++i)
{
for(int j = 1; i <= countj; ++i)
{
dd= driver.findElement(By.xpath("//*[@id='listagemConvenios']/table/tbody/tr["+i+"]/td["+j+"]")).getText() ;
}
}

关于java - 从页面中的 Xpath 获取数据 - java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32620128/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com