Skip to content

Commit

Permalink
updated docs
Browse files Browse the repository at this point in the history
  • Loading branch information
DavertMik committed Jul 3, 2023
1 parent a488489 commit f7013ae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/ai.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ permalink: /ai
title: Testing with AI 🪄
---

CodeceptJS is the first open-source test automation framework that incorporates AI features to improve the testing experience. CodeceptJS uses OpenAI GPT to auto-heal failing tests, assist in writing tests, and more...
**CodeceptJS is the first open-source test automation framework with AI** features to improve the testing experience. CodeceptJS uses OpenAI GPT to auto-heal failing tests, assist in writing tests, and more...

Think of it as your testing co-pilot built into the testing framework

> 🪄 **AI features for testing are experimental**. Currently AI features enabled only for web based testing with Playwright, WebDriver, etc. Those features will be improved based on user's experience.
> 🪄 **AI features for testing are experimental**. AI works only for web based testing with Playwright, WebDriver, etc. Those features will be improved based on user's experience.

## How AI Improves Automated Testing
Expand Down
1 change: 0 additions & 1 deletion lib/helper/scripts/highlightElement.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
module.exports.highlightElement = (element, context) => {

const clientSideHighlightFn = el => {
const style = '0px 0px 4px 3px rgba(255, 0, 0, 0.7)';
const prevStyle = el.style.boxShadow;
Expand Down
2 changes: 1 addition & 1 deletion lib/plugin/heal.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ module.exports = function (config = {}) {
snippet: codeSnippet,
});

output.print(colors.bold.green('Code healed successfully'));
output.print(colors.bold.green(' Code healed successfully'));
healedSteps++;
return;
} catch (err) {
Expand Down

0 comments on commit f7013ae

Please sign in to comment.