Tests: Add contacts print test
parent
2f20f43cbb
commit
b536e18d97
@ -0,0 +1,52 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\Browser\Contacts;
|
||||
|
||||
use Tests\Browser\Components\App;
|
||||
|
||||
class PrintTest extends \Tests\Browser\TestCase
|
||||
{
|
||||
public static function setUpBeforeClass()
|
||||
{
|
||||
\bootstrap::init_db();
|
||||
}
|
||||
|
||||
/**
|
||||
* Test Print action
|
||||
*/
|
||||
public function testPrint()
|
||||
{
|
||||
$this->browse(function ($browser) {
|
||||
$browser->go('addressbook');
|
||||
|
||||
$browser->waitFor('#contacts-table tbody tr:first-child')
|
||||
->ctrlClick('#contacts-table tbody tr:first-child');
|
||||
|
||||
list($current_window, $new_window) = $browser->openWindow(function ($browser) {
|
||||
if ($browser->isPhone()) {
|
||||
$this->markTestSkipped();
|
||||
}
|
||||
|
||||
$browser->clickToolbarMenuItem('print');
|
||||
});
|
||||
|
||||
$browser->driver->switchTo()->window($new_window);
|
||||
|
||||
$browser->with(new App(), function ($browser) {
|
||||
$browser->assertEnv([
|
||||
'task' => 'addressbook',
|
||||
'action' => 'print',
|
||||
]);
|
||||
});
|
||||
|
||||
$browser->assertVisible('#contactphoto img')
|
||||
->assertSeeIn('#contacthead .firstname', 'John')
|
||||
->assertSeeIn('#contacthead .surname', 'Doe')
|
||||
->assertSeeIn('#contacttabs fieldset:first-child legend', 'Properties')
|
||||
->assertSeeIn('#contacttabs', 'johndoe@example.org');
|
||||
|
||||
$browser->driver->close();
|
||||
$browser->driver->switchTo()->window($current_window);
|
||||
});
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue