JS文件可以包含在PHPUnit测试中吗?

时间:2014-10-28 10:45:26

标签: php selenium phpunit

我正致力于创建多语言测试用例。为此,我必须使用应用程序使用的JS文件。有没有办法将这些文件加载​​到我的PHPUnit脚本中?

1 个答案:

答案 0 :(得分:0)

不完全确定您要实现的目标,假设您只想获取现有的JS文件并在Selenium中执行它的内容。为此,您可以使用file_get_contents()函数。

$script = file_get_contents('/path/to/your/script.js');
$this->execute(['script' => $script, 'args' => []]);