You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
671 B
PHP
25 lines
671 B
PHP
<?php
|
|
|
|
namespace Tests\Browser\Addressbook;
|
|
|
|
class Addressbook extends \Tests\Browser\DuskTestCase
|
|
{
|
|
public function testAddressbook()
|
|
{
|
|
$this->browse(function ($browser) {
|
|
$this->go('addressbook');
|
|
|
|
// check task
|
|
$this->assertEnvEquals('task', 'addressbook');
|
|
|
|
$objects = $this->getObjects();
|
|
|
|
// these objects should be there always
|
|
$this->assertContains('qsearchbox', $objects);
|
|
$this->assertContains('folderlist', $objects);
|
|
$this->assertContains('contactslist', $objects);
|
|
$this->assertContains('countdisplay', $objects);
|
|
});
|
|
}
|
|
}
|