如何使用 Selenium-IDE 显示实际的 URL
How to display actual URL with Selenium-IDE
(我是法国人,很抱歉我的语言...)
我想 下载 PDF 在某些站点 Selenium
我已经尝试使用 web-driver 替代方案,但我需要使用 [=32= 大约 500 urls ]Firefox... 所以使用 selenium IDE 更快更实用。
所以...我在好的页面上单击 pdf 的 url,它会在另一个选项卡中打开。我想得到另一个标签的url。
这里是 selenium-IDE 代码中 TEST.side 文件的一部分
"value": ""
}, {
"id": "57a28847-d129-4cd1-b1f2-7ce91fcc0f71",
"comment": "",
"command": "click",
"target": "css=.rows-container:nth-child(5) .CS-icon-pdf",
"targets": [],
"value": ""
}]
}],
"suites": [{
"id": "487d74b6-a424-4166-88a4-dc111ae6b17d",
"name": "Default Suite",
"persistSession": false,
"parallel": false,
"timeout": 300,
"tests": ["ec447b0b-b9b3-445f-88bf-fee0abbfcb4f"]
}],
"urls": ["some url"],
"plugins": []
}
我真的没有找到任何有效的解决方案
所以...我在想要的页面上单击 pdf 的 url,它会在另一个选项卡中打开。我想得到另一个标签的url。
我知道在某个地方有人可以帮助我。
多谢随机市民!
编辑:
这里是htmlsource。
我在 Documents[=44 中寻找 Rapport annuel pdf =]节
您可以使用命令 store attribute
检索 href
属性。
这是一个使用 xpath 的示例:
以及命令的文档:
store attribute attribute locator, variable name
Gets the value of an element attribute. The value of the attribute may differ across browsers (this is the case for the "style" attribute, for example).
arguments:
attribute locator - An element locator followed by an @ sign and then the name of the attribute, e.g. "foo@bar".
variable name - The name of a variable without brackets.
(我是法国人,很抱歉我的语言...) 我想 下载 PDF 在某些站点 Selenium
我已经尝试使用 web-driver 替代方案,但我需要使用 [=32= 大约 500 urls ]Firefox... 所以使用 selenium IDE 更快更实用。 所以...我在好的页面上单击 pdf 的 url,它会在另一个选项卡中打开。我想得到另一个标签的url。
这里是 selenium-IDE 代码中 TEST.side 文件的一部分
"value": ""
}, {
"id": "57a28847-d129-4cd1-b1f2-7ce91fcc0f71",
"comment": "",
"command": "click",
"target": "css=.rows-container:nth-child(5) .CS-icon-pdf",
"targets": [],
"value": ""
}]
}],
"suites": [{
"id": "487d74b6-a424-4166-88a4-dc111ae6b17d",
"name": "Default Suite",
"persistSession": false,
"parallel": false,
"timeout": 300,
"tests": ["ec447b0b-b9b3-445f-88bf-fee0abbfcb4f"]
}],
"urls": ["some url"],
"plugins": []
}
我真的没有找到任何有效的解决方案
所以...我在想要的页面上单击 pdf 的 url,它会在另一个选项卡中打开。我想得到另一个标签的url。
我知道在某个地方有人可以帮助我。
多谢随机市民!
编辑:
这里是htmlsource。 我在 Documents[=44 中寻找 Rapport annuel pdf =]节
您可以使用命令 store attribute
检索 href
属性。
这是一个使用 xpath 的示例:
以及命令的文档:
store attribute attribute locator, variable name
Gets the value of an element attribute. The value of the attribute may differ across browsers (this is the case for the "style" attribute, for example).arguments:
attribute locator - An element locator followed by an @ sign and then the name of the attribute, e.g. "foo@bar".
variable name - The name of a variable without brackets.