如何在 PHP 中访问 var
我正在使用 selenium-rc 和 php。我想在我的测试中显示 CLASSNAME 的值。我如何呈现 var?我尝试执行 $this['drivers']['CLASSNAME']
但这对我不起作用。
(这是来自调试)
谢谢!
I'm using selenium-rc with php. I want to show in my test the value of CLASSNAME. How can i present the var? I tried to do $this['drivers']['CLASSNAME']
but this is not working for me.
(This is from the debug)
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来应该是:
$this->drivers[0]->CLASSNAME
Looks like it should be:
$this->drivers[0]->CLASSNAME