Dalam persekitaran pembangunan web moden, ujian tanpa antara muka merupakan langkah yang amat diperlukan kerana ia boleh mensimulasikan operasi pengguna dan mengesahkan ketepatan UI. PhantomJS ialah alat popular untuk ujian automatik dalam persekitaran tanpa kepala. Artikel ini akan memperkenalkan cara menggunakan PhantomJS dalam PHP untuk ujian tanpa antara muka.
1. Pasang PhantomJS
Pertama sekali, anda perlu memasang PhantomJS pada mesin Anda boleh memuat turun dan memasangnya dari laman web rasmi. Berikut ialah langkah pemasangan di bawah Linux:
<?php $url = 'https://www.google.com/'; $searchText = 'PhantomJS'; // 启动PhantomJS服务 $phantomjs = new JonnyWPhantomJsClient(); $phantomjs->getEngine()->setPath('/usr/local/bin/phantomjs'); $request = $phantomjs->getMessageFactory()->createRequest($url, 'GET'); $response = $phantomjs->getMessageFactory()->createResponse(); // 执行搜索 $request->setDelay(5); // 等待5秒钟 $request->setViewportSize(1024, 768); // 设置视口大小 $request->setRequestData(array('q' => $searchText), JonnyWPhantomJsHttpRequestInterface::METHOD_POST); $phantomjs->send($request, $response); // 输出响应 echo $response->getContent();
<?php $url = 'https://www.google.com/'; $searchText = 'PhantomJS'; // 启动PhantomJS服务 $phantomjs = new JonnyWPhantomJsClient(); $phantomjs->getEngine()->setPath('/usr/local/bin/phantomjs'); $request = $phantomjs->getMessageFactory()->createRequest($url, 'GET'); // 设置截图配置 $settings = array( 'quality' => 90, 'format' => 'png', 'viewportSize' => array('width' => 1024, 'height' => 768), 'clipRect' => array('top' => 0, 'left' => 0, 'width' => 1024, 'height' => 768), 'paperSize' => array('format' => 'A4', 'orientation' => 'portrait', 'margin' => '1cm'), ); // 创建一个屏幕截图 $screenshot = $phantomjs->captureScreenshot($request, $settings); // 保存截图到文件 file_put_contents('screenshot.png', $screenshot->getBinary());
<?php $url = 'https://www.google.com/'; $searchText = 'PhantomJS'; // 启动PhantomJS服务 $phantomjs = new JonnyWPhantomJsClient(); $phantomjs->getEngine()->setPath('/usr/local/bin/phantomjs'); $request = $phantomjs->getMessageFactory()->createRequest($url, 'GET'); $response = $phantomjs->getMessageFactory()->createResponse(); // 执行搜索 $request->setDelay(5); // 等待5秒钟 $request->setViewportSize(1024, 768); // 设置视口大小 $request->setRequestData(array('q' => $searchText), JonnyWPhantomJsHttpRequestInterface::METHOD_POST); // 模拟点击 $request->setScript('document.getElementsByName("btnG")[0].click();'); // 模拟滚动 $request->setScript('window.scrollTo(0, document.body.scrollHeight);'); // 模拟输入 $request->setScript('document.getElementsByName("q")[0].setAttribute("value", "PhantomJS");'); $phantomjs->send($request, $response); // 输出响应 echo $response->getContent();
Atas ialah kandungan terperinci Cara menggunakan PhantomJS untuk ujian tanpa antara muka dalam PHP. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!