You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to report a defect.
The defect is about I.seeInField. When I want to use it to verify a <select> field has the expected value, it fails with WebDriver, but passes with Playwright. Not sure when it started. It was today the first time, I came up with the idea to verify the value of a <select> field.
Steps to reproduce:
I.amOnPage('https://interactive-examples.mdn.mozilla.net/pages/tabbed/select.html');
I.switchTo('#output-iframe');
I.selectOption('#pet-select', 'Hamster');
I.seeInField('#pet-select', 'Hamster'); // ✅Passes with Playwright. ❌Fails with WebDriver with error 'The selector "option" used with strategy "css" is invalid!'
Version used:
CodeceptJS 3.6.5
WebDriver.IO: 8.40.6
The text was updated successfully, but these errors were encountered:
I want to report a defect.
The defect is about
I.seeInField
. When I want to use it to verify a<select>
field has the expected value, it fails with WebDriver, but passes with Playwright. Not sure when it started. It was today the first time, I came up with the idea to verify the value of a<select
> field.Steps to reproduce:
Version used:
The text was updated successfully, but these errors were encountered: