Skip to content

Commit

Permalink
👌 IMPROVE: Based on v1.38 playwright
Browse files Browse the repository at this point in the history
  • Loading branch information
ortoniKC committed Sep 25, 2023
1 parent 3565740 commit a9de61d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions panelconfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ function playwrightSnippetJava(type, codeType, codeValue, variable) {
str += `.click();`
break;
case "sendKeys":
str += `.type();`
str += `.fill();`
break;
case "getAttribute":
str += `.getAttribute();`
Expand Down Expand Up @@ -309,7 +309,7 @@ function playwrightSnippetJS(type, codeType, codeValue, variable) {
str += `.click();`
break;
case "sendKeys":
str += `.type();`
str += `.fill();`
break;
case "getAttribute":
str += `.getAttribute();`
Expand Down

0 comments on commit a9de61d

Please sign in to comment.