I'm automating PowerBI API requests in Tosca. The query I want to execute as payload of a Postrequest is working fine in Postman and also in the API scan module of Tosca but when exporting the API scan to ToscaCommander and implementing the module in a testcase I have problems with how Tosca is evaluating the DAX query.
The query is the following:
EVALUATE{CALCULATE(COUNTROWS('InfM_CommonInsurance dimQuotation'),FILTER('InfM_CommonInsurance dimQuotation','InfM_CommonInsurance dimQuotation'[Quotation_Date] >= DATE(2025,5,1) && 'InfM_CommonInsurance dimQuotation'[Quotation_Date] <= DATE(2025,5,31)))}
The error thrown when running the Testcase is:Token is not valid in this context: >= DATE(2025,5,1) && 'InfM_CommonInsurance dimQuotation'
I tried to surround the query with single or double quotes with no positive result.