- Hatalar
- http://easyloadrunner.blogspot.com.tr/2014/03/connection-timeout-errorfailed-to.html
- http://easyloadrunner.blogspot.com.tr/2014/04/memory-violation-error-in-load-runner.html
- http://easyloadrunner.blogspot.com.tr/2013/07/vugen-not-recording-internet-explorer.html
- http://easyloadrunner.blogspot.com.tr/2013/08/loadrunner-error-26630-not.html
- http://easyloadrunner.blogspot.com.tr/2013/07/text-and-image-checkpoints-in-web.html
- http://easyloadrunner.blogspot.com.tr/2013/07/recording-problems-in-loadrunner.html
- http://easyloadrunner.blogspot.com.tr/2013/07/how-do-you-define-sla-in-load-runner.html
- http://easyloadrunner.blogspot.com.tr/2013/07/how-to-change-timeout-on-loadrunner.html
- Problems and Issues when creating Loadrunner scripts with the Java protocol-http://easyloadrunner.blogspot.com.tr/2013/07/problems-and-issues-when-creating.html
- http://easyloadrunner.blogspot.com.tr/2013/07/best-practices-for-creating-scripts-in.html
- http://easyloadrunner.blogspot.com.tr/2014/02/distributed-load-testing-in-jmeter.html
- http://easyloadrunner.blogspot.com.tr/2014/03/action-files-in-loadrunner.html
- http://easyloadrunner.blogspot.com.tr/2013/07/load-runner-analysis-error-object.html
- http://easyloadrunner.blogspot.com.tr/2013/07/how-to-choose-virtual-users-as-process.html, http://harinderseera.blogspot.com.tr/2011/04/threadsafe-protocols-in-loadrunner.html
- http://easyloadrunner.blogspot.com.tr/2013/07/detection-of-memory-leaks-in-load.html
- http://motevich.blogspot.com.tr/2007/08/how-to-detect-memory-leaks-with.html
Karmaşık kullanıcı hareketlerini (sağ tıklama, iki kere tıklama, sürükleme,...) taklit etmek için kullanılan API. Doğrudan Klavye veya Fare kullanmak yerine bu sınıf kullanılır. Build patternini uygular: yöntem çağrıları tarafından belirtilen tüm eylemleri içeren bir CompositeAction oluşturur. Kullanıcı hareketlerini uygulayan fonksiyonları kullanmak için Actions ve Action sınıfını import etmek gerekir: Actions sınıfı ve Action sınıfı, WebDriver API'sinin org.openqa.selenium.Interactions paketinde bulunur. import org.openqa.selenium.interactions.Actions; import org.openqa.selenium.interactions.Action; Yöntemlerini kullanmaya çağırmak için Actions sınıfı nesnesine ihtiyaç vardır. Actions actions = new Actions(WebDriver nesnesi); Üzerinde işlem yapılacak elementi bulmak gerekiyor. WebElement webElement = driver.findElement(...); actions.contextClick(webElement).perform(); //contextClick, element üzerinde sağ tıklar. Bu sınıfının bazı fonksiyonl...
Yorumlar
Yorum Gönder