Tagged Questions
0
votes
0answers
86 views
Automating tests using the new ios-driver
I’m trying to automate tests on an iphone simulator or device for a web application running in Safari. The documentation for IPhoneDriver says it is now deprecated and to use ios-driver or appium. The ...
0
votes
1answer
87 views
selenium webdriver click event is not working for the option selected from select2 dropdown
selenium webdriver click event is not working for the option selected from select2 dropdown.
sel_advertiser = Select(self.driver.find_element_by_id("brand_option"))
for option in ...
0
votes
1answer
206 views
Logout script in selenium webdriver chrome
I'm new in selenium.
I logged into Facebook through selenium webdriver script but now i want to logout. Please help me with the script.
eg:
public class AJ {
public static void ...
0
votes
0answers
46 views
How to automate custom designed browser based appliacation?
We have an JavaScript application which runs on our own custom designed browser. Now, I have came across the situation to automate our application on that browser.
I have vast experience in Selenium ...
0
votes
2answers
184 views
Not able to click on menu option from selenium
I am trying to select menu option for my WebApp, Able to click on the menu, menu options are also visible But not able to click on menu option.
From Selenium API if I try to check the visibility of ...
2
votes
2answers
774 views
How do I switch to a Frame and click on the pop up using web driver (Selenium - Java)?
<iframe height="0" frameborder="0" width="500" scrolling="no" style="position: absolute; top: 185.5px; left: 460.5px; height: 357px; width: 500px; z-index: 10002; border: medium none; ...
0
votes
2answers
556 views
How can I write test case for KeyPress event in Selenium-WebDriver (Ruby)?
I tried the following code,
element = driver.find_element(:id, 'textbox')
element.senk_keys "Hello"
element.send_keys :enter
This set "Hello" in the text box but "enter" key is not working.
Is ...
2
votes
0answers
1k views
Multiple Instances of Firefox during Selenium Webdriver Testing not handling focus correctly.
I have noticed that while running multiple selenium firefox tests in parallel on a grid that the focus event handling is not working correctly. I have confirmed that when each of my tests is run ...