如何在代码中单击与指定文本匹配的锚标记

时间:2018-03-15 19:20:35

标签: php codeception

代码中,如何使用“textadded”点击锚标记的链接

<a class="edit" href="https://abcd.em/123">textadded</a>


`$I->click(".edit [textadded]");` //just for the example

1 个答案:

答案 0 :(得分:0)

对于&#34;点击&#34;你可以使用详细文本:

<a class="edit" href="https://abcd.em/123">textadded</a>


`$I->click("textadded");` //just for the example