casperjs 中 URL 的正则表达式模式
Regex pattern for URL in casperjs
在 casperJS 中,我正在编写一个测试用例以在弹出窗口中打开 URL。
URL 看起来像这样
https://api{domain_name}/facilities/{facility_id}/assessments/{assessment_id}/print_preview
我想获取上述 URL 的正则表达式以与
一起使用
withPopup(Mixed popupInfo, Function then)
我试过这些正则表达式模式
/assessment/
/assessment$/
/print_preview/
/$print_preview$/
请帮助我为上述 URL 创建正确的正则表达式。
我使用了 /assessments/ 并且有效:-)
在 casperJS 中,我正在编写一个测试用例以在弹出窗口中打开 URL。
URL 看起来像这样
https://api{domain_name}/facilities/{facility_id}/assessments/{assessment_id}/print_preview
我想获取上述 URL 的正则表达式以与
一起使用withPopup(Mixed popupInfo, Function then)
我试过这些正则表达式模式
/assessment/
/assessment$/
/print_preview/
/$print_preview$/
请帮助我为上述 URL 创建正确的正则表达式。
我使用了 /assessments/ 并且有效:-)