Jump to content
  • 0

Как достучаться до всех элементов формы


ganzalik228
 Share

Question

На страничке имеется форма, у формы нет id, нет никаких атрибутов, кроме action и method. Мне нужно проверить цвет у ВСЕХ элементов формы, не перебирая их явно (элементов куча, input select checkbox и т.д.). как "достать" из формы все элементы? Всё делаю в Selenium IDE через command: storeEval | command: мой "скрипт" | target | myResult (хотя думаю в чём делаю, не столь важно)

Что я пробовал:

1.

window.document.defaultView.getComputedStyle(windo w.document.getElementsByTagName('form')).getProper tyValue('background-color');

Ошибка: [error] Threw an exception: Could not convert JavaScript argument arg 0 [nsIDOMWindow.getComputedStyle]

2 (с присваиванием id форме).

window.document.getElementsByTagName('form')[0].id = "myForm" ; window.document.defaultView.getComputedStyle(windo w.document.myForm.getElementsByTagName('*')).getPr opertyValue('background-color');

Ошибка: [error] Threw an exception: window.document.myForm is undefined

3.

var myForm = document.getElementsByTagName('form')[0]; var children = myForm.childNodes;

Ошибка: [error] Threw an exception: myForm is undefined

4.

window.document.getElementsByTagName('form')[0].id = "myForm" ;

var children = document.myForm.getElementsByTagName('*');

такая же ошибка: [error] Threw an exception: document.myForm is undefined

Помогите, пожалуйста. Пробовал и через .setArrtibute

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy