Skip to content

Commit

Permalink
Testcafe: Blinking: reqOpts of undefined (#7132)
Browse files Browse the repository at this point in the history
* work for the surveyjs/private-tasks#313 ( blinking-reqOpts )

* work for the surveyjs/private-tasks#313 ( blinking-reqOpts ) - 2
  • Loading branch information
dmitry-kurmanov committed Oct 13, 2023
1 parent ed87276 commit 6d6061d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@
"style-loader": "^1.2.1",
"surveyjs-doc-generator": "git+https://github.com/surveyjs/surveyjs-doc-generator.git",
"svg-inline-loader": "^0.8.2",
"testcafe": "~2.6.2",
"testcafe": "3.3.0",
"ts-jest": "^26.1.1",
"ts-loader": "^8.0.15",
"ts-node": "3.3.0",
Expand Down
3 changes: 2 additions & 1 deletion testCafe/questions/dropdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,8 @@ frameworks.forEach((framework) => {
.click("option[value=Volkswagen]")

.click("select")
.expect(Selector("option[value=Vauxhall]").hasAttribute("disabled")).ok();
.expect(Selector("option[value=Vauxhall]").hasAttribute("disabled")).ok()
.click("select");

const questionDropdownSelect = Selector(".sv_q_dropdown_control").nth(1);
const popupContainer = Selector(".sv-popup__container").filterVisible();
Expand Down

0 comments on commit 6d6061d

Please sign in to comment.