Thank you Allan, I think it's more a Selenium question...
Anyway, here's my "code":
[code]
public function testMyFunction() {
...
$this->click("page with datatable");
$this->waitForPageToLoad("30000"); // pass this wait but no ajax calls and table empty
$this->click("a table element");
...
[/code]
Replies
Allan
Anyway, here's my "code":
[code]
public function testMyFunction() {
...
$this->click("page with datatable");
$this->waitForPageToLoad("30000"); // pass this wait but no ajax calls and table empty
$this->click("a table element");
...
[/code]
I'm using datatable with server side calls.
In my datatable setup there was oLanguage.sUrl param, like
[code]
"oLanguage": {
"sUrl": "js/myEpicUrl/dataTables.IT.txt"
},
[/code]
I removed it and the functional test with Selenium works again.
Allan