0

unable to click the Hyperlink using Selenium wbedriver, because they (Developers) used Knockout JS with MVC, so please give an steps how to handle in Automate for these type of JS

for example

<a href="#" data-bind="click: $root.lnkAdd">New Grade</a>

during the testing i want to click that hyperlink (New Grade)

so please help me out how to do this

regards prabu

4

2 に答える 2

1

Knockout を使用しても、ページ上の要素を見つける方法は変わりません。結局のところ、それはまだ通常のhtmlです。私のセレンの経験は少し時代遅れですが、以前は常に xpath を使用して要素をターゲットにしていました

元:sel.Click("//a[text()='New Grade']")

于 2013-04-12T05:43:32.920 に答える