在我对symfony 4应用程序的功能测试中,我使用带有PANTHER_NO_HEADLESS = 1的Chrome Webdriver来查看会发生什么情况。
我的问题是:Chrome浏览器从调试工具(F12)开始并且未全屏显示。 这是一个问题,因为我想测试仅在全屏模式下显示的元素。
我的测试:
public function testMyTest()
{
$client = Client::createChromeClient();
$crawler = $client->request('GET', 'http://example.com/form');
$form = $crawler->selectButton('valider')->form([
'formField' => 'value'
]);
$client->submit($form)
// Some assertions here
}
命令:
$export PANTHER_NO_HEADLESS=1
然后
phpunit -c phpunitFunctional.xml --filter="testMyTest" path/to/FileTest.php
如何在没有调试工具的情况下从全屏开始?
答案 0 :(得分:0)
我终于找到了解决方案。 如果有人遇到同样的问题,我会写它。
public function testMyTest()
{
$client = Client::createChromeClient();
$crawler = $client->request('GET', 'http://example.com/form');
$client->manage()->window()->maximize();
$form = $crawler->selectButton('valider')->form([
'formField' => 'value'
]);
$client->submit($form)
// Some assertions here
}
答案 1 :(得分:0)
另外,请考虑以下事项:
$size = new WebDriverDimension(1024,10000);
$client->manage()->window()->setSize($size);