Skip to content

Commit 6789e93

Browse files
committed
fix wrong call to debug method
1 parent 928bd2f commit 6789e93

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

src/JoomlaBrowser.php

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -63,53 +63,53 @@ public function installJoomla()
6363

6464
$this->debug('I click Language Selector');
6565
$I->click("//div[@id='jform_language_chzn']/a"); // Language Selector
66-
$this-debug('I select en-GB');
66+
$this->debug('I select en-GB');
6767
$I->click("//li[text()='English (United Kingdom)']"); // English (United Kingdom)
6868
sleep(1);
69-
$this-debug('I fill Site Name');
69+
$this->debug('I fill Site Name');
7070
$I->fillField('Site Name', 'Joomla CMS test');
71-
$this-debug('I fill Site Description');
71+
$this->debug('I fill Site Description');
7272
$I->fillField('Description', 'Site for testing Joomla CMS');
7373

7474
// I get the configuration from acceptance.suite.yml (see: tests/_support/acceptancehelper.php)
75-
$this-debug('I fill Admin Email');
75+
$this->debug('I fill Admin Email');
7676
$I->fillField('Admin Email', $this->config['admin email']);
77-
$this-debug('I fill Admin Username');
77+
$this->debug('I fill Admin Username');
7878
$I->fillField('Admin Username', $this->config['username']);
79-
$this-debug('I fill Admin Password');
79+
$this->debug('I fill Admin Password');
8080
$I->fillField('Admin Password', $this->config['password']);
81-
$this-debug('I fill Admin Password Confirmation');
81+
$this->debug('I fill Admin Password Confirmation');
8282
$I->fillField('Confirm Admin Password', $this->config['password']);
83-
$this-debug('I click Site Offline: no');
83+
$this->debug('I click Site Offline: no');
8484
$I->click("//fieldset[@id='jform_site_offline']/label[2]"); // ['No Site Offline']
85-
$this-debug('I click Next');
85+
$this->debug('I click Next');
8686
$I->click('Next');
8787

8888
$this->debug('I Fill the form for creating the Joomla site Database');
8989
$I->waitForText('Database Configuration', 10, 'h3');
9090

91-
$this-debug('I select MySQLi');
91+
$this->debug('I select MySQLi');
9292
$I->selectOption('#jform_db_type', $this->config['database type']);
93-
$this-debug('I fill Database Host');
93+
$this->debug('I fill Database Host');
9494
$I->fillField('Host Name', $this->config['database host']);
95-
$this-debug('I fill Database User');
95+
$this->debug('I fill Database User');
9696
$I->fillField('Username', $this->config['database user']);
97-
$this-debug('I fill Database Password');
97+
$this->debug('I fill Database Password');
9898
$I->fillField('Password', $this->config['database password']);
99-
$this-debug('I fill Database Name');
99+
$this->debug('I fill Database Name');
100100
$I->fillField('Database Name', $this->config['database name']);
101-
$this-debug('I fill Database Prefix');
101+
$this->debug('I fill Database Prefix');
102102
$I->fillField('Table Prefix', $this->config['database prefix']);
103-
$this-debug('I click Remove Old Database ');
103+
$this->debug('I click Remove Old Database ');
104104
$I->click("//label[@for='jform_db_old1']"); // Remove Old Database button
105105
$I->click('Next');
106-
$this-debug('I click Next');
106+
$this->debug('I click Next');
107107
$I->click('Next');
108108

109109
$this->debug('I install joomla with or without sample data');
110110
$I->waitForText('Finalisation', 10, 'h3');
111111

112-
$this-debug('I install Sample Data');
112+
$this->debug('I install Sample Data');
113113
if ($this->config['install sample data']) :
114114
$I->selectOption('#jform_sample_file', $this->config['sample data']);
115115
else :

0 commit comments

Comments
 (0)