我要在带有--no-sandbox
标志的无头便携式chrome 上运行 TestCafe
我该怎么做?
我可以在没有标志的情况下运行它
testcafe chrome:path/to/portable/chrome:headless test.js
但是当我尝试设置标志时,它不起作用
testcafe chrome:path/to/portable/chrome:headless --no-sandbox test.js
答案 0 :(得分:2)
使用引号testcafe 'chrome:path/to/portable/chrome:headless --no-sandbox' test.js
可以帮助
CREATE OR REPLACE FUNCTION func99(type text,start_date TIMESTAMP, end_date TIMESTAMP) RETURNS TABLE(
some_day TIMESTAMP,
tot_requests BIGINT)
AS $$
BEGIN
RETURN QUERY
SELECT t1.first_date, COUNT(*) FROM table1 t1
WHERE t1.request_type = type and t1.first_date > start_date and t1.first_date < end_date;
END;
$$ LANGUAGE PLpgSQL;
我已经结束了问题