We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I often have to edit the query part of the url. Currently I have to do something like this to get the current query:
query = scope.get("browser.url").partition("?")[2].partition("#")[0]
query and fragment would also be useful in context matching to limit commands to specific parts of websites.
query
fragment
The text was updated successfully, but these errors were encountered:
I've been generally recommending folks don't use scope.get() besides debugging. Try this:
scope.get()
from urllib.parse import urlparse urlparse(actions.browser.address())
Sorry, something went wrong.
added query/fragment to browser scope in rust beta
No branches or pull requests
I often have to edit the query part of the url. Currently I have to do something like this to get the current query:
query
andfragment
would also be useful in context matching to limit commands to specific parts of websites.The text was updated successfully, but these errors were encountered: