I'm trying to get my feet wet with Selenium IDE and I wanted to test the login process of the website that I work for. Once logged in you get a "newton" (its what my boss calls it) put in front of the members area of the website http://abc1234.members.domain.tld So I wanted to use assertLocation with a glob:http://*.members.domain.tld but I can't seem to get the syntax right or I'm just doing it plain wrong:
<tr>
<td>assertLocation</td>
<td>glob:http://*.members.domain.tld</td>
<td></td>
</tr>
but in the log I get:
[error] Actual value 'http://abc1234.members.domain.tld/' did not match 'glob:http://*.members.titanmen.com'
I tried all sorts of combinations of globs and regexs in various td fields even tried things like assertLocation(glob:http://*.members.domain.tld)
What am I doing wrong?
<td>assertLocation</td><td>glob:http://*.members.domain.tld/</td><td></td>- Tawm