首页 > 解决方案 > 如何在 vs 代码中调试 selenium nodejs 黄瓜测试?

问题描述

1. Feature: Observe
Scenario: Observe Results
    Given user is on the google

2. Step def : 
Given('user is on the google', function () {
    console.log("Hello world");
});

调试点:console.log("Hello world"); 我想在这一点上停止调试器。谁能建议怎么做?谢谢

标签: node.jsselenium-webdrivervscode-debuggercucumberjs

解决方案


推荐阅读