aboutsummaryrefslogtreecommitdiffstats
path: root/tests/phpunit/selenium/catalog/CheckoutTest.php
blob: 8d5583d90ba6086768ed45c86a8afaaf3ebf5f30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?php

class CatalogCheckoutTest extends OpenCartSeleniumTest {
	
	
	/**
	 * @before
	 */
	protected function setupTest() {
		$this->setBrowser('firefox');
		$this->setBrowserUrl(HTTP_SERVER);
	}
	
	public function testUpdateQuantity() {
		$this->addProductsToCart();
		
		$element = $this->byCssSelector('.table-bordered tbody tr:last-child input');
		$this->assertEquals('3', $element->value());
		
		$element = $this->byCssSelector('.table-bordered tbody tr:first-child input');
		$this->assertEquals('1', $element->value());
		
		$element->clear();
		$element->click();
		$this->keys('2');
		
		$this->byCssSelector('.table-bordered tbody tr:first-child button.btn-primary')->click();
		
		sleep(3);
				
		$element = $this->byCssSelector('.table-bordered tbody tr:first-child input');
		$this->assertEquals('2', $element->value());
				
		$element = $this->byCssSelector('.table-bordered tbody tr:last-child input');
		$this->assertEquals('3', $element->value());
	}
	
	public function testRemoveProduct() {
		$this->addProductsToCart();
		
		$element = $this->byCssSelector('form .table-bordered tbody tr:first-child td:nth-child(2)');
		$this->assertStringStartsWith('MacBook', $element->text());
		
		$this->byCssSelector('.table-bordered tbody tr:first-child button.btn-danger')->click();
		
		sleep(3);
		
		$element = $this->byCssSelector('form .table-bordered tbody tr:first-child td:nth-child(2)');
		$this->assertStringStartsWith('Sony VAIO', $element->text());
	}
	
	private function addProductsToCart() {
		$this->url('index.php?route=product/product&product_id=43');
		$this->byId('button-cart')->click();
		
		$this->url('index.php?route=product/product&product_id=46');
		$this->byId('input-quantity')->clear();
		$this->clickOnElement('input-quantity');
		$this->keys('3');
		$this->byId('button-cart')->click();
		
		$this->url('index.php?route=checkout/cart');
	}
}