If you are using Nightwatch JS to test a website and you need to test an anchor nested in an unsorted list, be sure to add the name attribute in the anchor, otherwise, the click command will fail. Let’s see a simple case with an HTML markup like this:
Category / Javascript

Actions and filters are so awesome in WordPress. They provide a very simple and powerful way to customization the WordPress core. So, Plugins and themes can execute code before or after a specified event or change the result of many core functions. On the web, I found a few discussion about the Javascript porting of […]

As you know, you can insert some content in any HTML page. You can insert content by using document.write() or by using the property innerHTML in a DOM object. Also, you can use an existing TAG in order to add/remove elements from its. For example, you can add a Javascript with: Of course, you can […]