Extract page content while simple testing with xpath and DOM
It is sometimes useful to grab content from the page that is currently tested. The idea is to search for the tag with xpath then convert it to DOM to get data... For instance, let's get the title and the href value of the second tab.
$tab = $this->xpath("//ul[contains(@class, 'tabs--primary')]/li[2]/a"); $link_title = dom_import_simplexml($tab[0])->nodeValue; // Edit $href = dom_import_simplexml($tab[0])->getAttribute('href'); // node/xx/edit //note that $tab[0])->getAttribute("src"); seems to work as well // or easier to get the href $this->xpath("//ul[contains(@class, 'tabs--primary')]/li[2]/a/@href");
override a default .tpl.php file in a custom module
to basically use a template file in a custom module use the hook_theme_registry_alter(&$theme_registry) like this
Testing date fields: strtotime tips
Unit testing the creation of a node with a date field could fail because of wrong interpretation of the date by strtotime function
Enable block
There is no available API to programmatically set a block. Like Drupal core does, we have to use db directly.
simpletest: count checkboxes checked
Sometimes it is useful to know exactly the amount of options enabled with a xpath expression
Add a conditional stylesheet for IE
the options of drupal_add_css allow the use of conditional stylesheets
debug drush (and php-cli)
Drush uses the cli version of php so traditional debugging tools and functions don't work.
Create an image style
to create in code, programmatically an image style (previously called image cache preset)
Current path alias
to get the current page alias path use
Unset core stylesheet in a custom theme
by using use hook_css_alter() in template.php
- ‹ previous
- 2 of 5
- next ›