Tag Archives: testing

Autologin in Windows

It required me some time to find an appropriate way to autologin into Windows 2102 Server. There are several ways of doing this but I found that typing netplwiz.exe In cmd is a good way to get things done and … Continue reading

Posted in Uncategorized | Tagged | Leave a comment

Software Testing

Long time no posts, but I’m still alive and kicking! Just finished an online course on Udacity — Software Testing.  Feels pretty interesting and not that hard to listen to (I was afraid my English skills degraded badly). However, still … Continue reading

Posted in Uncategorized | Tagged , | Leave a comment

A few words about SmartClientWebDriver

Since I’ve touched SmartClientWebDriver at work, supporting a framework to test SmartGWT web-application, there is something I have to say. Do not agree to test SmartGWT’s applications! Probably, I’m a bit harsh, but here is my point of view: SmartClientWebDriver doesn’t … Continue reading

Posted in Uncategorized | Tagged , | Leave a comment

A simple revelation about WebDriver

Continuing my last post: We’ve managed to make our framework faster and more stable. The answer was quite easy – seems like SmartClient implementation of WebDriver works incorrectly with timeouts. So WebDriver wait = new WebDriver(driver,timeout).withTimeout(5, TimeUnit.SECONDS).pollingEvery(1,TimeUnit.SECONDS); didn’t work properly. … Continue reading

Posted in Uncategorized | Tagged , , | 1 Comment

One thing that disappointed me in Selenium WebDriver

Two days ago I was trying to speed-up our framework that eases work with Selenium Webdriver – we just write .xml files and then tests are working according to these files. Whilst trying to do explicit wait, I mentioned one … Continue reading

Posted in Uncategorized | Tagged , , | Leave a comment

Начало работы с GoogleTest

Мой первый пост здесь на русском, но так будет проще. Столкнувшись недавно с необходимостью покрыть код тестами, я стал искать фреймворк для тестирования кода. Навскидку можно сразу же назвать несколько: xUnit, Boost Test Library, и GoogleTest (далее GT). Посмотрев несколько … Continue reading

Posted in Uncategorized | Tagged , , | Leave a comment