WordPress database error: [MySQL client ran out of memory]
SELECT ip FROM wp_statpress WHERE pvalue = '45'
WordPress database error: [MySQL client ran out of memory]
SELECT ip FROM wp_statpress WHERE pvalue = '45'
WordPress database error: [Lost connection to MySQL server during query]
SELECT urlrequested,pvalue,count(*) as counts FROM wp_statpress
WHERE (ip!=null ) and (pvalue != '')and (pvalue != '45')
group by urlrequested order by counts desc limit 5
Using Selenium for web-gui tests is really nice. You can record your workflow with the excelent selenium plugin for firefox and use them to write your own test.
The only problem seems to be Drag&Drop. The senenium runner has some drag&drop methods, but they don’t seem to work in any way. But selenium offeres mouse controll where you can simulate mouse clicks not only at an absolute position, but rather relative to a dom object. So, if your dragable <div> element has ID1 and the dropzone has ID2 you could write the following in your testrunner:
selenium.mouseDownAt("//div[@id='ID1']","10,10");
selenium.mouseMoveAt("//div[@id='ID2']","10,10");
selenium.mouseOver("//div[@id='ID2']");
selenium.mouseUpAt("//div[@id='ID2']","10,10");
The important command for this is probably the mouseOver one, without that the richfaces d&d component for JSF would not work.