黄瓜和jstree
我正在构建一个 Rails 应用程序,其中有一个带有 jstree 对象的页面,并使用 Cucumber 进行集成测试。但我很沮丧,因为我正在尝试编写一个黄瓜步骤(使用水豚/硒作为网络驱动程序),该步骤将单击以展开 jstree 的节点之一。我一生都不知道该怎么做!在带有加号/减号的 jstree-icon 对象上执行“单击”不会执行任何操作。有什么想法吗?
更新:这是一个示例树,我可以做得非常简单,它有一棵树。 http://jsfiddle.net/aV62w/ - 现在,我需要模拟点击加号的行为单击 Node B 文件夹,将其展开。
I'm building a rails app that has a page with a jstree object on it, and am using cucumber for my integration testing. I'm frustrated though, because I'm trying to write a cucumber step (using capybara/selenium for the web driver) that will click to expand one of the nodes of the jstree. I, for the life of me, cannot figure out how to do this! Executing 'click' on the jstree-icon object with the plus/minus sign in it does nothing. Any ideas?
UPDATED: Here is an example tree, as simple as I can make it pretty much, that has a tree. http://jsfiddle.net/aV62w/ - now, I need to simulate the act of clicking on the plus by the Node B folder, to expand it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以利用 jstree 的方法 与树进行交互 - 为此,您需要在节点上设置 id,以便 jstree 可以引用它们。
jQuery
小提琴: http://jsfiddle.net/aV62w/1/
You can interact with the tree by utilising jstree's methods -- for this to work you need to set id's on the nodes, so they can be referenced by jstree.
jQuery
Fiddle: http://jsfiddle.net/aV62w/1/
html-unit Web 驱动程序(Java 中)附带一个executeScript,可在 Web 步骤中使用。我用 cucumber 为 Grails 项目做了这个(它使用 groovy)。
请注意,所有 DOM 查找和遍历都是在 JS 中使用 JQuery 完成的,不需要附加 ID - 当然可以改进导航:)
希望有帮助。
The html-unit web driver (in Java) comes with a executeScript, which can be used in a web step. I did this for a Grails project with cucumber (it uses groovy)
Note that all DOM finding and traversing is done in JS with JQuery and there is no need to attach an ID - navigation can be improved, of course :)
Hope it helps.