Skip to main content

All Questions

0 votes
0 answers
43 views

Problem with recognition awt and swing libraries during the coding

Everything works in the program when the libraries with import javax.swing.* and import java.awt.*,but it doesn't work when something from these libraries is typed that doesn't offer awt and swing ...
anastasija radonjic's user avatar
1 vote
1 answer
426 views

Clickable button with drop down

I'm trying to create a button that has a drop down menu and clickable. How would I do this when developing for eclipse plugin? I'm looking for answers that are specific to Eclipse Plugin development ...
Noy Oliel's user avatar
  • 1,706
0 votes
2 answers
4k views

How to fix "The type List is not generic; it cannot be parameterized with arguments <String>" error in cucumber selenium JAVA

I tried to use the data table and implements my function to fetch the values from this Cucumber data table, I used List< List< String >> but it doesn't work ! public void myfunction(...
Hajar Elatri's user avatar
1 vote
1 answer
4k views

How to select drop down option in Selenium webdriver?

I am trying to select drop down in Selenium webdriver. Here is my code: package Select; import org.testng.annotations.Test; import java.util.List; import java.util.concurrent.TimeUnit; import org....
Divya's user avatar
  • 69
0 votes
3 answers
2k views

Eclipse Java Selenium webdriver - Unable to select dropdown item (ElementNotVisibleException)

I have a dropdown list in my menu and I'm trying to select one of two options available after clicking the dropdown. I can't get the options to show though and therefore I'm unable to click either one....
Hugo's user avatar
  • 323
2 votes
1 answer
2k views

How to put a dynamic drop-down list in Eclipse Kepler toolbar?

I'm working on an Eclipse plug-in. With Indigo, a drop-down list in the toolbar like the one below works perfectly. Drop-down list in the toolbar, the currently selected item is shown when the list ...
fgthollywood's user avatar