Term
| What is the difference between an assert and a verify with Selenium commands? |
|
Definition
Assert: Will fail and abort the current test execution. Verify: Will fail and continue to run the test execution. |
|
|
Term
| If a Selenium function requires a script argument, what would that argument look like in general terms? |
|
Definition
| StoreEval(script, variable) and storeExpression(expression, variableName). |
|
|
Term
| If a Selenium function requires a pattern argument, what five prefixes might that argument have? |
|
Definition
Five prefixes that Selenium pattern argument are: glob, regexp, exact, regexpi. |
|
|
Term
| Does Selenium support mobile internet testing? |
|
Definition
| Selenium supports Opera and opera is used in most of the Smart phones. So whichever Smart phone supports opera, selenium can be used to test. So, one can use Selenium RC to run the tests on mobiles. |
|
|
Term
| Is it possible to use Selenium for multi-user Load Testing? |
|
Definition
| Yes, but it requires a LOT of hardware. |
|
|