MDL-65439 core_message: New step to open settings preferences

This commit is contained in:
cescobedo
2019-04-29 13:20:39 +02:00
committed by Sara Arjona
parent 138460e98b
commit 344f8adeed
+17
View File
@@ -239,4 +239,21 @@ class behat_message extends behat_base {
$this->escape($convname).'")]';
$this->execute('behat_general::i_click_on', array($xpath, 'xpath_element'));
}
/**
* Open the settings preferences.
*
* @Given /^I open messaging settings preferences$/
*/
public function i_open_messaging_settings_preferences() {
$this->execute('behat_general::wait_until_the_page_is_ready');
$this->execute('behat_general::i_click_on',
array(
'//*[@data-region="message-drawer"]//a[@data-route="view-settings"]',
'xpath_element',
'',
'',
)
);
}
}