Hello smartclient guys,
Trying to test SmartGWT 4 app under firefox, by writing
Java test classes using your webdriver implementation.
Is there any way to do something like that:
---------------------------
File profileDir = new File("src/test/resources/my_profile");
FirefoxProfile profile = new FirefoxProfile(profileDir);
driver = new FirefoxDriver(profile);
----------------
with SmartClient's firefox "webdriver" class ?
SmartClientFirefoxDriver have no parameterized constructor, and is not inherited from any seleniumhq class, so, is it possible at all?
P.S. Plz update class names in "webdriver classes overview" here: http://www.smartclient.com/smartgwtee/javadoc/index.html?com/smartgwt/client/docs/AutomatedTesting.html
Trying to test SmartGWT 4 app under firefox, by writing
Java test classes using your webdriver implementation.
Is there any way to do something like that:
---------------------------
File profileDir = new File("src/test/resources/my_profile");
FirefoxProfile profile = new FirefoxProfile(profileDir);
driver = new FirefoxDriver(profile);
----------------
with SmartClient's firefox "webdriver" class ?
SmartClientFirefoxDriver have no parameterized constructor, and is not inherited from any seleniumhq class, so, is it possible at all?
P.S. Plz update class names in "webdriver classes overview" here: http://www.smartclient.com/smartgwtee/javadoc/index.html?com/smartgwt/client/docs/AutomatedTesting.html
Comment