I am using Selenium2 WebDriver with C #
Actions.Build - Returns a composite IAction that can be used to perform actions. (IActions has a Perform method to perform actions) Actions.Perform - Performs the current action.
In most examples, use actions like this:
new Actions(IWebDriverObj).actions...Build().Perform()
but it also works
new Actions(IWebDriverObj).actions...Perform() //no Build before Perform
Do I need to use Build () before the Perform () or Build () functions are for a specific compatibility purpose only?
Thanks in advance for your answers.
c # selenium selenium-webdriver webdriver
Dvc1201
source share