generated from AppiumTestDistribution/appium-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 17
Open
Description
Hello,
The project documentation and examples seems to be outdated and misleading.
For example:
await driver.execute("interceptor: startListening", [{
config: {
include : {
url: "**/reqres.in/**",
}
}
}]);
Should be:
await driver.execute("interceptor: startListening", {
config: {
include : [{
url: "**/reqres.in/**",
}]
}
});
- the object containing
configshould not be in an array (this mistake is present in all the examples) - the
includeandexcludecontent need to be ane array because in api-sniffer.ts, you dothis.config.include.some
I recommand you to update it to help people to use your great plugin 🙂
Best regards,
Paul
Metadata
Metadata
Assignees
Labels
No labels