Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Selenium IDE の皆様、こんにちは。
値が pattern1 または pattern2 のいずれかに一致するかどうかを Selenium IDE でテストする必要がある場合。PHPでは、次のように記述します。
if($value1 == $pattern1 or $value1 == $pattern2) { echo "match"; }
次のようにSelenium IDEでこれを行う方法を知っている人はいますか:
次の正規表現パターンを使用できます。
regexp:(${pattern1}|${pattern2})
セレンソース:
<tr> <td>verifyTextPresent</td> <td>regexp:(${pattern1}|${pattern2})</td> <td></td> </tr>