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 have written some xctests with SeleniumForiOS.framework added to my testing project.
After I started the tests, as always, the simulator launched.
Then in the setUp method, the test created the remote web driver (same as in the SeleniumTests example) as below:
self.driver = [[SERemoteWebDriver alloc] initWithServerAddress:@"IPADDRESS" port:4723 desiredCapabilities:c requiredCapabilities:nil error:&error];
Here comes the problem. The server started a new session and KILLED the simulator launched by the tests. As a result, the test failed and ended. Then the server relaunched the simulator but my tests have already ended!
Do you have an example of how the entire configuration should be done? Thanks!
The text was updated successfully, but these errors were encountered:
I have written some xctests with SeleniumForiOS.framework added to my testing project.
After I started the tests, as always, the simulator launched.
Then in the setUp method, the test created the remote web driver (same as in the SeleniumTests example) as below:
self.driver = [[SERemoteWebDriver alloc] initWithServerAddress:@"IPADDRESS" port:4723 desiredCapabilities:c requiredCapabilities:nil error:&error];
Here comes the problem. The server started a new session and KILLED the simulator launched by the tests. As a result, the test failed and ended. Then the server relaunched the simulator but my tests have already ended!
Do you have an example of how the entire configuration should be done? Thanks!
The text was updated successfully, but these errors were encountered: