46 lines
1.6 KiB
PHP
46 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace Tests\Browser\Pages\Admin;
|
|
|
|
use Laravel\Dusk\Browser;
|
|
use Tests\Data\Admin\AdminLoginPage;
|
|
use Tests\Data\Admin\AdminPage;
|
|
use Tests\Data\Admin\CustomerData;
|
|
use Tests\Data\Admin\CustomerPage;
|
|
use Tests\Data\Admin\LoginData;
|
|
use Tests\DuskTestCase;
|
|
|
|
class AddCustomerTest extends DuskTestCase
|
|
{
|
|
/**
|
|
* A basic browser test example.
|
|
* @return void
|
|
*/
|
|
public function testAddCustomer()
|
|
{
|
|
|
|
$this->browse(function (Browser $browser) {
|
|
$browser->visit(AdminLoginPage::Admin_Login['login_url'])
|
|
//1.登录
|
|
->type(AdminLoginPage::Admin_Login['login_email'], LoginData::Ture_Data['email'])
|
|
->type(AdminLoginPage::Admin_Login['login_pwd'], LoginData::Ture_Data['password'])
|
|
->press(AdminLoginPage::Admin_Login['login_btn'])
|
|
->pause(2000)
|
|
//2.点击客户管理
|
|
->click(AdminPage::TOP['mg_customers'])
|
|
//3.点击创建客户
|
|
->press(CustomerPage::Group_list['cre_customer'])
|
|
//4.填写客户信息
|
|
->type(CustomerPage::Create['name'], CustomerData::Customer_Info['name'])
|
|
->type(CustomerPage::Create['email'], CustomerData::Customer_Info['email'])
|
|
->type(CustomerPage::Create['pwd'], CustomerData::Customer_Info['pwd'])
|
|
|
|
//5.点击保存
|
|
->press(CustomerPage::Create['save_btn'])
|
|
->pause(5000)
|
|
->assertSee(CustomerData::Customer_Info['email']);
|
|
|
|
});
|
|
}
|
|
}
|