With browser automation a web browser can be instructed to repeat the same, possibly long task automatically or at will. In daily use browser automation can be used to fill forms, extract data from web pages, or provide authentication to a service. Browser automation is often used for automating ...
0
votes
0answers
41 views
How to post a Ajax request to a particular form using vb .net
I am working for a small concern, and have now fumbled across a unique requirement for which I would need all of you advices.
The Requirement is as follows:
I Have a VB.Net Thick Client application ...
0
votes
1answer
55 views
Identifying corresponding IE Tab using VBScript
I am trying to write a VBScript for getting hold of a IE Tab which is already opened(After which i will get the Form ID and use it to post AJAX Post request with some data and update the server).
I ...
0
votes
0answers
44 views
how to extract page load time in a browser in java using selenium webdriver or some other API
I need to extract load time of various elements embedded in a page such as image, javascript and others along with that of the page itself using selenium webdriver or other API (if any) in java.
Is ...
-6
votes
1answer
41 views
Need a Xpath for following webelement [closed]
I need a Xpath for following HTML code.
<a herf="option1" class="bodytext0">I need new car</a>
Thank you.
1
vote
2answers
35 views
Is there a framework for distributing browser automation testing over a cluster of EC2 instances?
I am aiming to simulate a large number of 'real users' hitting and realistically using our site at the same time, and ensuring they can all get through their use cases. I am looking for a framework ...
-1
votes
0answers
60 views
What does the addScript command do in Selenium IDE? [closed]
I am new to selenium IDE. I want to know, what does the addScript command do in Selenium IDE.
9
votes
1answer
287 views
How to automate an IE webapp that pops a modal HTML dialog?
[Revised yet again for clarity]
I have a C++ program which interacts with a website. The site is IE-specific, and so is my program.
I'm connecting to the running instance of IE in an ordinary way ...
0
votes
0answers
91 views
webdriver chromedriver unable to click jquery mobile button
I am trying to test jquery mobile app using webdriver(ChromeDriver). Below is the code sample
driver.get("http://localhost:8888/m/index.html");
new WebDriverWait(driver, ...
0
votes
0answers
56 views
How to make a browser bot in Visual C++?
I'm interested in automating a browser in Visual C++? I'd appreciate any help on what libraries to use. This bot needs to load a page and click on links, buttons, checkboxes, fill text boxes, and ...
0
votes
3answers
81 views
How to set the checkbox in the first column based on the value in the second column of a table?
I'm automating a task using Java and Selenium.
I want to set a checkbox (which is in the first column of a table) based on whether the value in the second column matches my input value. For example, ...
1
vote
1answer
214 views
Native Events error trying to double-click element using watir-webdriver
I am writting automatic test for GWT application. And I try to double click on table element. I am using this code fo click:
browser.element(:xpath, ...
0
votes
0answers
174 views
New SHDocVw.InternetExplorer Gives Error in IE 10
Just got the update for IE 10 from IE 9, and I use SHDocVw.InsernetExplorer in VB.Net to go to a website and gather information.
Worked just fine in IE 9, but in IE 10 I run into some problems with ...
8
votes
2answers
229 views
Check if “Please enter an email address” message appears
Given a simple page:
<form>
<input type="email">
<button>click</button>
</form>
If I enter anything in text field that is not e-mail and click the button, Please ...
1
vote
0answers
47 views
How to programatically invoke the functions available on browser Add-on
One of client requires a add-on to be installed for a browser and perform all the available functions of that add-on from the add-on bar. The add-on has been coded in Javascript and there are many ...
0
votes
1answer
106 views
sendkeys() enters text and clears it in an auto-complete search field
I am not able to get webdriver working on entering some text into an auto-complete based search text-field.
I am using the following code:
//here elmt is a WebElement variable.
elmt = ...
0
votes
0answers
30 views
How to use text (keyword) from my post into the ads script? Make the text automatically fill the ads script
Here is my text/ keywords inside my blog post.
<b>Song Title: </b>Nothing Like Us (Bonus Track)<br />
<b>Artist: </b>Justin Bieber<br />
...
0
votes
0answers
44 views
generating java classes during build time to create test automation libraries for a java based web application
i just started working on web applications, with no prior experience or knowledge.
Currently i am into test automation for a java based web application(OUAF). This application has got menus and lot ...
0
votes
1answer
261 views
How to use synchronize in Capybara exactly?
If how to use wait_until is pretty clear (I've used the methods like this while creating tests through the native Webdriver methods), but not the new synchronize method (sorry:)). I've read the theme ...
0
votes
0answers
94 views
Website Automation Testing
what is good approach to design website functionality test automation in selenium web driver ?
simple create objects in java like - WebDriver driver = new FirefoxDriver();
...
-2
votes
2answers
134 views
Imacro for changing frame
I am trying to record a macro for auto posting on a website but problem is that one text field is changing its frame id every time when the macro tries to post, so it is not possible for me to ...
-1
votes
3answers
504 views
How to write my own customize locator for Selenium webdriver in java?
I want to write my own locator to access the elements. WebDriver’s API offers currently eight locators allowing to retrieve elements by id, name attribute, tag name, complete or partial link text, ...
0
votes
2answers
104 views
How to set the checkbox in the first column based on the value in the second column?
I'm automating a task using Ruby and Watir.
I want to set a checkbox (which is in the first column of a table) based on whether the value in the second column matches my input value. For example, in ...
0
votes
0answers
337 views
Automate data entry from excel to web [closed]
I'm working on a project that utilizes a web tool I need to enter data into. I have all the data I need in excel and unfortunately this tool does not allow for copy/pasting a row/col of data, but ...
1
vote
0answers
299 views
Accessing the IWebBrowser2 Document property returns empty
I am attempting to automate web data entry from a local access database using VBA.
After navigating to the website the login page will redirect to the main menu. However the IE object's document ...
1
vote
2answers
274 views
Selenium IDE script can't find second select element on page
I'm testing an Ajax app and have recorded a script in Selenium IDE 1.9.1 in Firefox 17. It generally works, but gets hung up at certain points. One issue I'm having is that the script correctly finds ...
3
votes
1answer
304 views
What testing does Selenium cover over and above testacular?
I understand that testacular is a JavaScript testing framework that can run in real browsers. If that is the case, what kind of test coverage does Selenium provide over and above testacular.
9
votes
3answers
4k views
how does selenium webdriver upload files to the browser?
I am a javascript/java developer and I have been trying to figure out how the selenium webdriver automation framework uploads files from the file system. It is impossible to set a file input via ...
2
votes
1answer
126 views
After finding out which JavaScript events are defined for an element, how do we proceed?
I am new to Watir (and JavaScript as well) and have been following the related questions (and answers as well). I've also gone through the "Firebug" suggestion. I couldn't quite gather what we are ...
0
votes
0answers
58 views
Taking screenshots of browser into a specific directory using sahi?
I would like to dump all the screen shots taken during a test script run into a particular directory. How can this be achieved?
I am aware of that sahi dumps all the screenshots into a ...
-1
votes
1answer
75 views
User emulation - Browser automation
I have a website where users should every day perform the following tasks:
Log in with user/password
Select from a filter the date of the day
Click on a link that will let them download a csv file ...
0
votes
0answers
419 views
jQuery Javascript wait iframe load before continue code execution
I'm working on a webbrowser automation project using javascript/jQuery and iFrames. The problem is that the code must wait for the iframe to load before continue it's execution.
// set value ...
2
votes
1answer
87 views
Advice on which language to persue for browser automation & scraping [closed]
Novice to programming. I have most of my experience in python. I am comparind this to C#. I have created small web apps using Web2py, and have read 'learn python the hard way'. I have limited to no C# ...
0
votes
0answers
32 views
method for letters management of automation system
I am writing automation with ASP.Net. I am using docx file for letter a automation system. this automation has run in local and web.
I went use ms word for edit docx file in automation system. So it ...
0
votes
1answer
79 views
How do you make a program that automates web browsing but not in a browser?
I wrote a program in python that used selenium to automate a web browser (firefox). It worked well but I have seen programs that automate web browsing but instead it seems to be in some kind of window ...
0
votes
0answers
15 views
Embedding web pages and internet functions in a window?
Recently, I have been making a program that will go to a website and do something for me. I am using python and selenium. On this website, in the forums, another user posted a link to a program he ...
0
votes
2answers
1k views
AutoIT For Chrome Not Working - Basic Authentication Dialog workaround for Selenium WebDriver Automation
I am trying to automate my test cases using selenium webdriver in java. It involves Basic Authentication Dialogs. For making IE, Chrome, FF Compatible using kind of same approach I have to use AutoIT ...
3
votes
2answers
375 views
Clear SSL State using vbscript
As a part of my project I have to automate a web application running over secure socket layer. So I have to clear SSL state, Cache, Browsing history using vbscript, after logout, if some account ...
0
votes
1answer
174 views
Selenium | Python | Mozilla - Automatically start selenium ide plugin in firefox [closed]
I need a python script to automatically start selenium ide in firefox, some script in python and selenium ide should be invisible or hidden, so that user cannot see it.
plz help?
0
votes
1answer
61 views
Browser automation for grails application
Developed a web application using grails framework.Now i want to integrate browser automation in my project. Can anybody suggest me how to integrate the browser automation in grails application?
1
vote
2answers
178 views
Sahi can't get access to child iframe elements
I can't get access to child iframe content from twist.
I was wondering, but such Sahi code don't executed correctly for me:
browser.execute("$('#buttonid', ...
0
votes
1answer
158 views
merging selenium rc and webdriver
I have made most of my automation code using Selenium RC with Python. But, I feel that with the evolution in my product (what I'm testing through selenium RC), my automation needs are changed. I tried ...
2
votes
1answer
46 views
JS/C# how do I know the elment id or xpath I just clicked or manipulated?
As you know, Selenium IDE can show you a script and tell you what element you just manipulated.
I don't know the what happened behind this. Every automation framework can know what element you are ...
-2
votes
2answers
125 views
How To Monitor The Events/Activities of Browser for Particular Website/URL in Python [closed]
Suppose i want to develop website testing script in python, i have 500 websites for which i have to develop testing script in python,
i want a python script to develop those scripts automatically
i ...
0
votes
1answer
839 views
Write TestCases using PageFactory (Selenium-WebDriver). Advantages?
Is it a good practice to go the PageFactory way when writing testcases in Selenium2? If yes why?
To be frank I have never used them when writing test-cases and have not missed it either. But I would ...
1
vote
1answer
2k views
Automation Errors: 800706B5, 80004005, 80010108 appear for internal SAP site scrape
I am writing a macro that will scrape my company's internal SAP site for vendor information. For several reasons I have to use VBA to do so. However, I cannot figure out why I keep getting these three ...
2
votes
2answers
264 views
Automating Google Soccer 2012
I am trying to automate Google Soccer 2012, just for fun. I did not have any problems automating other Google games.
The problem with Soccer is that it does not react to left and right, but space ...
1
vote
1answer
158 views
Coded UI and the old ways to test web app
My project used to use Microsoft.mshtml and SHDocVw.dll to automate our Web UI test. Then I heard about the CodedUI test. So questions are:
Does it mean I can give away Microsoft.mshtml and ...
0
votes
1answer
463 views
automate page scroll using vbscript
I need to take complete snapshot of a page using vbscript, and to do this I need to scroll a bit down. Actually I am able to take half of the page in snapshot but I need to take the remaining part ...
0
votes
1answer
410 views
Sometimes Unable to get .Document.Body.InnerHtml
The code below works the first time it is run but often fails on subsequent runs.
The line where it fails is commented below. I think that looping through SHDocVw.ShellWindows creates the issue and I ...
1
vote
2answers
959 views
automate click on a link
I am trying to click a link on a page, it don't have any id and not having a unique class name. Only unique thing about the function is the onclick handler
<a href="#" onclick="closepopup('popup', ...
