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
@sebady This is sort-of by design. That said, we should probably do a better job guarding against this and throw something a bit nicer than a NPE. Do you agree?
@test()
@webtest(browser = "*phantomjs")
public void testDriverFromNewThread() {
new Thread(new Runnable() {
public void run() {
// inherit driver created on webtest?
Grid.driver().get(url);
}
}).start();
}
The text was updated successfully, but these errors were encountered: