
Security News
Django Joins curl in Pushing Back on AI Slop Security Reports
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
= Selenium-extjs
Please, it's work in progress - wait for complete features or help us :)
More information about extjs and selenium tests:
== How it works?
It's used the 'get_eval' to get Ext's components information (like id) using the window.Ext object and common selenium methods (like: type, click_at) to change the application status.
==Instalation
==Contributing
Send us a message!
==Some Examples
Please, take a look at "/test" files.
===Simple
@selenium = [..your selenium object..]
appfeedgrid = @selenium.find_ext(:xtype => "appfeedgrid")
button = @selenium.find_ext(:xtype => "button", :text => 'Open All', :xparent => appfeedgrid)
# click method wait for any request complete
button.click
=== Working with Form
# search for form.
form = @selenium.find_ext(:xtype => "form", :title_has => 'Simple')
form.field[:email].value = "NotAEmail"
# convert to "isValid" and run at client.
assert_false form.field[:email].valid?
form.fields[:email].value = 'myemail@domain.br'
assert_true form.field[:email].valid?
=== Working with Grid and Ajax Content.
# :wait blocks test, waiting for window
window = @selenium.find_ext(:xtype => 'window', :wait => true, :title => 'Store Load Callback')
# close the window
window.close
# search for editorgrid component.
editorgrid = @selenium.find(:xtype => "editorgrid")
# number of lines
print editorgrid.num_rows()
# set row 1 with data
editorgrid.edit_row(1, ["Jorge", "Shade", "10.10", "24/03/06", true]);
# get row (hash)
print editorgrid.get_row(3)
# clica at cell x,y
editorgrid.click_at_cell(2, 5)
FAQs
Unknown package
We found that selenium-extjs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.